2025-04-15 12:10:19 +02:00

24 lines
1.0 KiB
XML

<Window x:Class="GestoreTrimestrale.UserStatusWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:GestoreTrimestrale"
xmlns:mycontrols="clr-namespace:GestoreTrimestrale.Views"
mc:Ignorable="d" Width="220" Height="600" ResizeMode="CanMinimize"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="38"></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition Height="58"></RowDefinition>
</Grid.RowDefinitions>
<Grid Grid.Row = "0">
<Label Content="Workflow status" HorizontalAlignment="Center"/>
</Grid>
<Grid Grid.Row = "1">
<mycontrols:WorkflowStatusView x:Name="mystatusView"/>
</Grid>
</Grid>
</Window>