CSGO-Projects/ConfigManagerV2/ConfigManagerV2/MainWindow.xaml
MathiasL 3d99b1f68b Migrate to .NET 6.0 and create ConfigManagerV2 project
* Make necessary adjustments to have the same working program
* AssemblyInfo is not set via the file anymore, but the csproj file or in the project settings under Package->General (AssemblyVersion is the one displayed in the Help window)
* Add null-forgiving operators etc. for new language version
* Move stuff that is shared between the DamageCalculator and ConfigManagerV2 into its separate project
2022-03-25 19:55:14 +01:00

20 lines
878 B
XML

<Window x:Class="ConfigManagerV2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ConfigManagerV2"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800"
Style="{DynamicResource CustomWindowStyle}">
<Grid>
<Menu>
<MenuItem Header="View">
<MenuItem Header="Themes">
<MenuItem Header="Dark" Uid="0" Click="changeTheme_Click" />
<MenuItem Header="Flashbang" Uid="1" Click="changeTheme_Click" />
</MenuItem>
</MenuItem>
</Menu>
</Grid>
</Window>