OUP.xaml 1.2 KB

1234567891011121314151617181920
  1. <Window x:Class="OUP.OUP"
  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:OUP"
  7. mc:Ignorable="d"
  8. Title="OUP" Height="450" Width="800" Loaded="Window_Loaded">
  9. <Grid>
  10. <DataGrid x:Name="Supply" FontSize="16" FontWeight="Bold" Margin="10" AutoGenerateColumns="False">
  11. <DataGrid.Columns>
  12. <DataGridTextColumn Binding="{Binding Path = Product}" IsReadOnly="False" Header="Product" Width="150"/>
  13. <DataGridTextColumn Binding="{Binding Path = Date}" IsReadOnly="True" Header="Date" Width="180"/>
  14. <DataGridCheckBoxColumn Binding="{Binding Path = IsDone, UpdateSourceTrigger=PropertyChanged}" IsReadOnly="False" Header="Delivered?" Width="120"/>
  15. <DataGridTextColumn Binding="{Binding Path = Description}" IsReadOnly="False" Header="Description" Width="*"/>
  16. </DataGrid.Columns>
  17. </DataGrid>
  18. </Grid>
  19. </Window>