mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-11 08:01:16 +00:00

* 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
20 lines
878 B
XML
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>
|