Product.xaml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <Page x:Class="WPF01.pages.Product"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:WPF01.pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="600"
  9. Title="Product">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="1*"/>
  13. <RowDefinition Height="20"/>
  14. </Grid.RowDefinitions>
  15. <Grid x:Name="ProductGrid">
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="1*"/>
  18. <RowDefinition Height="1*"/>
  19. </Grid.RowDefinitions>
  20. <Grid.ColumnDefinitions>
  21. <ColumnDefinition Width="1*"/>
  22. <ColumnDefinition Width="1*"/>
  23. <ColumnDefinition Width="1*"/>
  24. </Grid.ColumnDefinitions>
  25. </Grid>
  26. <TextBox x:Name="Search" HorizontalAlignment="Left" Height="27" TextWrapping="Wrap" VerticalAlignment="Top" Width="600" KeyUp="TextBox_KeyUp" Grid.Row="1"/>
  27. </Grid>
  28. </Page>