MainWindow.xaml 747 B

1234567891011121314151617181920
  1. <Window x:Class="HistoryUI.Views.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:prism="http://prismlibrary.com/"
  7. prism:ViewModelLocator.AutoWireViewModel="True"
  8. xmlns:local="clr-namespace:HistoryUI.Views"
  9. mc:Ignorable="d"
  10. ResizeMode="NoResize"
  11. SizeToContent="WidthAndHeight"
  12. Title="MainWindow"
  13. WindowStyle="None"
  14. ShowInTaskbar="True"
  15. WindowStartupLocation="CenterScreen">
  16. <Grid>
  17. </Grid>
  18. </Window>