MainWindow.xaml 827 B

12345678910111213141516171819202122
  1. <Window x:Class="HistoryView.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:HistoryView.Views"
  9. MouseLeftButtonDown="Window_MouseLeftButtonDown"
  10. mc:Ignorable="d"
  11. ResizeMode="NoResize"
  12. SizeToContent="WidthAndHeight"
  13. Title="JetPlasma Controller"
  14. WindowStyle="None"
  15. ShowInTaskbar="True"
  16. WindowStartupLocation="CenterScreen">
  17. <Grid>
  18. </Grid>
  19. </Window>