| 12345678910111213141516171819202122 |
- <wpf:ThemableWindow x:Class="PRSDesktop.WindowTrackerSummary"
- 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:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
- mc:Ignorable="d"
- Title="WindowTrackerSummary" Height="800" Width="1200">
- <Grid x:Name="grid" Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <DockPanel Grid.Row="1">
- <Button x:Name="Cancel" DockPanel.Dock="Right" Content="Cancel" Height="30" Width="80" Margin="5,5,0,0"
- Click="Cancel_Click" />
- <Button x:Name="OK" DockPanel.Dock="Right" Content="OK" Height="30" Width="80" Margin="5,5,0,0"
- Click="OK_Click" />
- <Label DockPanel.Dock="Left" />
- </DockPanel>
- </Grid>
- </wpf:ThemableWindow>
|