MainWindow.xaml 1.2 KB

1234567891011121314151617181920212223
  1. <Window x:Class="examPrepare.MainWindow"
  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:examPrepare"
  7. mc:Ignorable="d"
  8. Title="Главное окно" Height="450" Width="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="1*"></RowDefinition>
  12. <RowDefinition Height="5*"></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <Grid/>
  15. <DockPanel Grid.Row="0" LastChildFill="False">
  16. <Button DockPanel.Dock="Left" x:Name="catalog_btn" Height="25" Width="80" Content="Каталог" Click="catalog_btn_Click"/>
  17. <Button DockPanel.Dock="Left" x:Name="cart_btn" Height="25" Width="80" Content="Корзина" Click="cart_btn_Click"/>
  18. <TextBlock DockPanel.Dock="Right" Height="30" Text="0" x:Name="products_count" />
  19. <TextBlock DockPanel.Dock="Right" Height="30" Text="колво добавленных товаров: " />
  20. </DockPanel>
  21. <Frame Grid.Row="1" x:Name="workspace" NavigationUIVisibility="Hidden"/>
  22. </Grid>
  23. </Window>