Window1.xaml 916 B

1234567891011121314151617181920212223242526
  1. <Window x:Class="HistoryUI.Views.Window1"
  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:HistoryUI.Views"
  7. mc:Ignorable="d"
  8. Title="Window1" Height="450" Width="800" WindowStyle="None" >
  9. <Window.Template>
  10. <ControlTemplate TargetType="Window">
  11. <Grid Background="White">
  12. <Grid.RowDefinitions>
  13. <RowDefinition/>
  14. <RowDefinition/>
  15. <RowDefinition/>
  16. </Grid.RowDefinitions>
  17. <ContentPresenter Grid.Row="1"/>
  18. </Grid>
  19. </ControlTemplate>
  20. </Window.Template>
  21. </Window>