IssuesWindow.xaml 644 B

1234567891011121314
  1. <Window x:Class="PRSDesktop.Forms.Issues.IssuesWindow"
  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:PRSDesktop.Forms.Issues"
  7. mc:Ignorable="d"
  8. Title="PRS Issues" Height="800" Width="1200"
  9. Loaded="Window_Loaded"
  10. WindowStartupLocation="CenterScreen">
  11. <Grid Margin="5">
  12. <local:IssuesGrid x:Name="Grid"/>
  13. </Grid>
  14. </Window>