Main.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Window x:Class="MyMoviesWPF.MVVM.View.Main"
  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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  7. xmlns:local="clr-namespace:MyMoviesWPF.MVVM.View"
  8. mc:Ignorable="d"
  9. Title="Main" Height="900" Width="1600"
  10. WindowStartupLocation="CenterScreen">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="45*"/>
  14. <RowDefinition Height="397*"/>
  15. </Grid.RowDefinitions>
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="139*"/>
  18. <ColumnDefinition Width="485*"/>
  19. <ColumnDefinition Width="176*"/>
  20. </Grid.ColumnDefinitions>
  21. <ContentControl
  22. HorizontalAlignment="Center" VerticalAlignment="Top" Grid.Column="2"
  23. Content="{Binding CurrentToolbar}" Margin="0,10,0,0"
  24. />
  25. <!--<StackPanel Grid.Column="1" Orientation="Horizontal" Margin="0,10,0,0" HorizontalAlignment="Center" Width="824">
  26. <TextBox Width="765" Height="50"
  27. Style="{DynamicResource MaterialDesignOutlinedTextBox}" BorderBrush="{DynamicResource MaterialDesignBodyLight}" materialDesign:HintAssist.Hint="ПОИСК" BorderThickness="1.5" />
  28. <Button Width="58" Height="50" />
  29. </StackPanel>-->
  30. </Grid>
  31. </Window>