|
| 1 | +<Window x:Class="LoadRetimer.FinalRetimeWindow" |
| 2 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 5 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 6 | + xmlns:local="clr-namespace:LoadRetimer" |
| 7 | + mc:Ignorable="d" |
| 8 | + Icon="/Icon.ico" |
| 9 | + Title="Final Retime" Height="300" Width="500" ResizeMode="NoResize"> |
| 10 | + <Grid> |
| 11 | + <Grid.RowDefinitions> |
| 12 | + <RowDefinition Height="2*" /> |
| 13 | + <RowDefinition Height="2*" /> |
| 14 | + <RowDefinition Height="2*" /> |
| 15 | + <RowDefinition Height="2*" /> |
| 16 | + <RowDefinition Height="1*" /> |
| 17 | + <RowDefinition Height="2*" /> |
| 18 | + </Grid.RowDefinitions> |
| 19 | + <Grid.ColumnDefinitions> |
| 20 | + <ColumnDefinition Width="1*" /> |
| 21 | + <ColumnDefinition Width="1*" /> |
| 22 | + </Grid.ColumnDefinitions> |
| 23 | + <Label Grid.Row="0" Grid.ColumnSpan="2" Content="Final Retime without loads:" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top" FontSize="25"/> |
| 24 | + <Label x:Name="WOLoads" Grid.Row="1" Grid.ColumnSpan="2" Content="--:--.---" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top" FontSize="25"/> |
| 25 | + <Label Grid.Row="2" Content="Retime with loads:" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top" FontSize="15"/> |
| 26 | + <Label Grid.Row="2" Grid.Column="1" Content="Loads:" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top" FontSize="15"/> |
| 27 | + <Label x:Name="WLoads" Grid.Row="3" Content="--:--.---" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top" FontSize="15"/> |
| 28 | + <Label x:Name="Loads" Grid.Row="3" Grid.Column="1" Content="--:--.---" HorizontalAlignment="Center" Margin="0,10,0,0" VerticalAlignment="Top" FontSize="15"/> |
| 29 | + <Label Grid.Row="4" Grid.ColumnSpan="2" Content="Generated with LoadRetimer v1.0.0" HorizontalAlignment="Center" FontSize="10" /> |
| 30 | + <Button Grid.Row="5" Grid.ColumnSpan="2" Content="Close" Click="Button_Click" /> |
| 31 | + </Grid> |
| 32 | +</Window> |
0 commit comments