Add files via upload

This commit is contained in:
celisej567
2021-07-07 14:56:09 +03:00
committed by GitHub
parent 2aef29ef39
commit 0ef19cd590
69 changed files with 1412 additions and 62 deletions

12
Icons/Hide.xaml Normal file
View File

@@ -0,0 +1,12 @@
<UserControl x:Class="Launcher.Icons.Hide"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Launcher.Icons"
mc:Ignorable="d" Height="30" Width="30" Background="#4CFFFFFF">
<Grid>
<Frame HorizontalAlignment="Left" Height="2" VerticalAlignment="Top" Width="18" Background="White" Margin="6,14,0,0" RenderTransformOrigin="0.5,0.5"/>
</Grid>
</UserControl>

28
Icons/Hide.xaml.cs Normal file
View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Launcher.Icons
{
/// <summary>
/// Логика взаимодействия для Exit.xaml
/// </summary>
public partial class Hide : UserControl
{
public Hide()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,30 @@
<UserControl x:Class="Launcher.Icons.BiggerExit"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Launcher.Icons"
mc:Ignorable="d" Height="30" Width="30" Background="#4CFFFFFF">
<Grid>
<Frame HorizontalAlignment="Left" Height="4" VerticalAlignment="Top" Width="22" Background="White" Margin="4,13,0,0" RenderTransformOrigin="0.5,0.5">
<Frame.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-46.049"/>
<TranslateTransform/>
</TransformGroup>
</Frame.RenderTransform>
</Frame>
<Frame HorizontalAlignment="Left" Height="22" VerticalAlignment="Top" Width="4" Background="White" Margin="13,4,0,0" RenderTransformOrigin="0.5,0.5">
<Frame.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-46.049"/>
<TranslateTransform/>
</TransformGroup>
</Frame.RenderTransform>
</Frame>
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Launcher.Icons
{
/// <summary>
/// Логика взаимодействия для Exit.xaml
/// </summary>
public partial class BiggerExit : UserControl
{
public BiggerExit()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,12 @@
<UserControl x:Class="Launcher.Icons.BiggerHide"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Launcher.Icons"
mc:Ignorable="d" Height="30" Width="30" Background="#4CFFFFFF">
<Grid>
<Frame HorizontalAlignment="Left" Height="4" VerticalAlignment="Top" Width="24" Background="White" Margin="3,13,0,0" RenderTransformOrigin="0.5,0.5"/>
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Launcher.Icons
{
/// <summary>
/// Логика взаимодействия для Exit.xaml
/// </summary>
public partial class BiggerHide : UserControl
{
public BiggerHide()
{
InitializeComponent();
}
}
}

View File

@@ -55,6 +55,18 @@
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType> <SubType>Designer</SubType>
</ApplicationDefinition> </ApplicationDefinition>
<Page Include="Icons\bigger\BiggerExit.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Icons\bigger\BiggerHide.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Icons\Hide.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Icons\Exit.xaml"> <Page Include="Icons\Exit.xaml">
<SubType>Designer</SubType> <SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator> <Generator>MSBuild:Compile</Generator>
@@ -69,6 +81,15 @@
</Compile> </Compile>
<Compile Include="classes\TimerTick.cs" /> <Compile Include="classes\TimerTick.cs" />
<Compile Include="classes\WinResize.cs" /> <Compile Include="classes\WinResize.cs" />
<Compile Include="Icons\bigger\BiggerExit.xaml.cs">
<DependentUpon>BiggerExit.xaml</DependentUpon>
</Compile>
<Compile Include="Icons\bigger\BiggerHide.xaml.cs">
<DependentUpon>BiggerHide.xaml</DependentUpon>
</Compile>
<Compile Include="Icons\Hide.xaml.cs">
<DependentUpon>Hide.xaml</DependentUpon>
</Compile>
<Compile Include="Icons\Exit.xaml.cs"> <Compile Include="Icons\Exit.xaml.cs">
<DependentUpon>Exit.xaml</DependentUpon> <DependentUpon>Exit.xaml</DependentUpon>
</Compile> </Compile>
@@ -107,6 +128,83 @@
<ItemGroup> <ItemGroup>
<Resource Include="images\smallroom.png" /> <Resource Include="images\smallroom.png" />
</ItemGroup> </ItemGroup>
<ItemGroup /> <ItemGroup>
<None Include="Resources\ui_menu_click_05.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_01.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_02.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_03.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_04.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_05.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_06.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_07.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_08.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_hover_09.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_A_01.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_A_02.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_A_03.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_A_04.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_Affirm.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_B.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\UI_Numpad_Deny.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_wife_messagecomplete.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_wife_messageincoming.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_change_01.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_change_02.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_change_03.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_click_01.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_click_02.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_click_03.wav" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\ui_menu_click_04.wav" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project> </Project>

View File

@@ -14,11 +14,14 @@
<Grid Background="Black"> <Grid Background="Black">
<Image HorizontalAlignment="Left" Height="498" Margin="-76,0,-51,0" VerticalAlignment="Top" Width="779" Source="images/smallroom.png" Stretch="Fill"/> <Image HorizontalAlignment="Left" Height="498" Margin="-146,0,-51,0" VerticalAlignment="Top" Width="849" Source="images/smallroom.png" Stretch="Fill"/>
<Icons:Exit HorizontalAlignment="Left" Height="30" Margin="622,0,0,0" VerticalAlignment="Top" Width="30" Background="#4C4B4B4B" PreviewMouseLeftButtonDown="Exit_PreviewMouseLeftButtonDown"/> <Icons:Exit Visibility="Visible" x:Name="Exit" HorizontalAlignment="Left" Height="30" Margin="622,0,0,0" VerticalAlignment="Top" Width="30" Background="#4C4B4B4B" MouseEnter="Exit_MouseEnter"/>
<Border BorderThickness="1" HorizontalAlignment="Left" Height="70" Margin="24,308,0,0" VerticalAlignment="Top" Width="272"> <Icons:BiggerExit Visibility="Hidden" x:Name="BiggerExit" HorizontalAlignment="Left" Height="30" Margin="622,0,0,0" VerticalAlignment="Top" Width="30" Background="#4C4B4B4B" PreviewMouseLeftButtonDown="Exit_PreviewMouseLeftButtonDown" MouseLeave="Exit_MouseLeave"/>
<Label x:Name="startgame" Content="Start" FontFamily="/Launcher;component/fonts/#League Gothic" FontSize="48" Foreground="#FFE6E6E6" Margin="1,-1,167,11" MouseEnter="Label_MouseEnter" MouseLeave="startgame_MouseLeave"/> <Border BorderThickness="1" HorizontalAlignment="Left" Height="151" Margin="24,308,0,0" VerticalAlignment="Top" Width="272">
<Label x:Name="startgame" Content="Start" FontFamily="/Launcher;component/fonts/#League Gothic" FontSize="55" Foreground="#FFE6E6E6" Margin="1,-1,150,83" MouseEnter="Label_MouseEnter" MouseLeave="startgame_MouseLeave" RenderTransformOrigin="0.5,0.5"/>
</Border> </Border>
<Icons:Hide Visibility="Visible" x:Name="Hide" HorizontalAlignment="Left" Height="30" Margin="592,0,0,0" VerticalAlignment="Top" Width="30" Background="#4C4B4B4B" MouseEnter="Hide_MouseEnter"/>
<Icons:BiggerHide Visibility="Hidden" x:Name="BiggerHide" HorizontalAlignment="Left" Height="30" Margin="592,0,0,0" VerticalAlignment="Top" Width="30" Background="#4C4B4B4B" MouseLeave="Hide_MouseLeave" PreviewMouseLeftButtonDown="BiggerHide_PreviewMouseLeftButtonDown"/>
</Grid> </Grid>

View File

@@ -15,6 +15,8 @@ using System.Windows.Navigation;
using System.Windows.Shapes; using System.Windows.Shapes;
using SteamWorkshopLib; using SteamWorkshopLib;
using System.Media;
using System.IO;
namespace Launcher namespace Launcher
{ {
@@ -37,11 +39,73 @@ namespace Launcher
private void Label_MouseEnter(object sender, MouseEventArgs e) private void Label_MouseEnter(object sender, MouseEventArgs e)
{ {
this.startgame.Foreground = new SolidColorBrush(Color.FromArgb(255, 164, 164, 164)); this.startgame.Foreground = new SolidColorBrush(Color.FromArgb(255, 164, 164, 164));
Random rnd = new Random();
int sound = rnd.Next(0, 20);
UnmanagedMemoryStream[] rndsong =
{
Properties.Resources._1,
Properties.Resources._2,
Properties.Resources._3,
Properties.Resources._4,
Properties.Resources._5,
Properties.Resources._6,
Properties.Resources._7,
Properties.Resources._8,
Properties.Resources._9,
Properties.Resources._10,
Properties.Resources._11,
Properties.Resources._12,
Properties.Resources._13,
Properties.Resources._13,
Properties.Resources._14,
Properties.Resources._15,
Properties.Resources._17,
Properties.Resources._18,
Properties.Resources._19,
Properties.Resources._20,
Properties.Resources._21
};
SoundPlayer sp = new SoundPlayer(rndsong[sound]);
sp.Play();
} }
private void startgame_MouseLeave(object sender, MouseEventArgs e) private void startgame_MouseLeave(object sender, MouseEventArgs e)
{ {
this.startgame.Foreground = new SolidColorBrush(Color.FromArgb(255, 230, 230, 230)); this.startgame.Foreground = new SolidColorBrush(Color.FromArgb(255, 230, 230, 230));
} }
private void Exit_MouseEnter(object sender, MouseEventArgs e)
{
this.Exit.Visibility = Visibility.Hidden;
this.BiggerExit.Visibility = Visibility.Visible;
}
private void Exit_MouseLeave(object sender, MouseEventArgs e)
{
this.Exit.Visibility = Visibility.Visible;
this.BiggerExit.Visibility = Visibility.Hidden;
}
private void BiggerHide_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
this.WindowState = WindowState.Minimized;
}
private void Hide_MouseEnter(object sender, MouseEventArgs e)
{
this.Hide.Visibility = Visibility.Hidden;
this.BiggerHide.Visibility = Visibility.Visible;
}
private void Hide_MouseLeave(object sender, MouseEventArgs e)
{
this.Hide.Visibility = Visibility.Visible;
this.BiggerHide.Visibility = Visibility.Hidden;
}
} }
} }

View File

@@ -1,70 +1,270 @@
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Этот код был создан программным средством. // Этот код создан программой.
// Версия среды выполнения: 4.0.30319.42000 // Исполняемая версия:4.0.30319.42000
// //
// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// код создан повторно. // повторной генерации кода.
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace Launcher.Properties {
namespace Launcher.Properties using System;
{
/// <summary> /// <summary>
/// Класс ресурсов со строгим типом для поиска локализованных строк и пр. /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
/// </summary> /// </summary>
// Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder // Этот класс создан автоматически классом StronglyTypedResourceBuilder
// класс с помощью таких средств, как ResGen или Visual Studio. // с помощью такого средства, как ResGen или Visual Studio.
// Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
// с параметром /str или заново постройте свой VS-проект. // с параметром /str или перестройте свой проект VS.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources internal class Resources {
{
private static global::System.Resources.ResourceManager resourceMan; private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture; private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() internal Resources() {
{
} }
/// <summary> /// <summary>
/// Возврат кэшированного экземпляра ResourceManager, используемого этим классом. /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager internal static global::System.Resources.ResourceManager ResourceManager {
{ get {
get if (object.ReferenceEquals(resourceMan, null)) {
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Launcher.Properties.Resources", typeof(Resources).Assembly); global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Launcher.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp; resourceMan = temp;
} }
return resourceMan; return resourceMan;
} }
} }
/// <summary> /// <summary>
/// Переопределяет свойство CurrentUICulture текущего потока для всех /// Перезаписывает свойство CurrentUICulture текущего потока для всех
/// подстановки ресурсов с помощью этого класса ресурсов со строгим типом. /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture internal static global::System.Globalization.CultureInfo Culture {
{ get {
get
{
return resourceCulture; return resourceCulture;
} }
set set {
{
resourceCulture = value; resourceCulture = value;
} }
} }
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _1 {
get {
return ResourceManager.GetStream("1", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _10 {
get {
return ResourceManager.GetStream("10", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _11 {
get {
return ResourceManager.GetStream("11", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _12 {
get {
return ResourceManager.GetStream("12", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _13 {
get {
return ResourceManager.GetStream("13", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _14 {
get {
return ResourceManager.GetStream("14", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _15 {
get {
return ResourceManager.GetStream("15", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _16 {
get {
return ResourceManager.GetStream("16", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _17 {
get {
return ResourceManager.GetStream("17", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _18 {
get {
return ResourceManager.GetStream("18", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _19 {
get {
return ResourceManager.GetStream("19", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _2 {
get {
return ResourceManager.GetStream("2", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _20 {
get {
return ResourceManager.GetStream("20", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _21 {
get {
return ResourceManager.GetStream("21", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _3 {
get {
return ResourceManager.GetStream("3", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _4 {
get {
return ResourceManager.GetStream("4", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _5 {
get {
return ResourceManager.GetStream("5", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _6 {
get {
return ResourceManager.GetStream("6", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _7 {
get {
return ResourceManager.GetStream("7", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _8 {
get {
return ResourceManager.GetStream("8", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream _9 {
get {
return ResourceManager.GetStream("9", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream ui_wife_messagecomplete {
get {
return ResourceManager.GetStream("ui_wife_messagecomplete", resourceCulture);
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream.
/// </summary>
internal static System.IO.UnmanagedMemoryStream ui_wife_messageincoming {
get {
return ResourceManager.GetStream("ui_wife_messageincoming", resourceCulture);
}
}
} }
} }

View File

@@ -46,7 +46,7 @@
mimetype: application/x-microsoft.net.object.binary.base64 mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding. : and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64 mimetype: application/x-microsoft.net.object.soap.base64
@@ -60,6 +60,7 @@
: and then encoded with base64 encoding. : and then encoded with base64 encoding.
--> -->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true"> <xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType> <xsd:complexType>
<xsd:choice maxOccurs="unbounded"> <xsd:choice maxOccurs="unbounded">
@@ -68,9 +69,10 @@
<xsd:sequence> <xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" /> <xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence> </xsd:sequence>
<xsd:attribute name="name" type="xsd:string" /> <xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="assembly"> <xsd:element name="assembly">
@@ -85,9 +87,10 @@
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence> </xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType> </xsd:complexType>
</xsd:element> </xsd:element>
<xsd:element name="resheader"> <xsd:element name="resheader">
@@ -109,9 +112,79 @@
<value>2.0</value> <value>2.0</value>
</resheader> </resheader>
<resheader name="reader"> <resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="1" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_change_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="10" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="11" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="12" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_04.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="13" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_05.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="14" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_06.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="15" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_07.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="16" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_08.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="17" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_09.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="18" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\UI_Numpad_A_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="19" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\UI_Numpad_A_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="2" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_change_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="20" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\UI_Numpad_A_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="21" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\UI_Numpad_A_04.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="3" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_change_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_click_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="5" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_click_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="6" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_click_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="7" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_click_04.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="8" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_click_05.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="9" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_menu_hover_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="ui_wife_messagecomplete" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_wife_messagecomplete.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="ui_wife_messageincoming" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ui_wife_messageincoming.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root> </root>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Resources/UI_Numpad_B.wav Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Icons\Exit - Копировать.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1ADE54C893A30845214C64CADE7D2EB325CCBE3788735C469199323659A76334"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// Exit
/// </summary>
public partial class Exit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/exit%20-%20%d0%9a%d0%be%d0%bf%d0%b8%d1%80%d0%be%d0%b2%d" +
"0%b0%d1%82%d1%8c.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Icons\Exit - Копировать.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

BIN
obj/Debug/Icons/Hide.baml Normal file

Binary file not shown.

75
obj/Debug/Icons/Hide.g.cs Normal file
View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\Icons\Hide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "6E503FDA872050142DBD26E41869171DD0269A50BC845EDF0E2B52D9DBE4E053"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// Hide
/// </summary>
public partial class Hide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/hide.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Icons\Hide.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\Icons\Hide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "6E503FDA872050142DBD26E41869171DD0269A50BC845EDF0E2B52D9DBE4E053"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// Hide
/// </summary>
public partial class Hide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/hide.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Icons\Hide.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\..\Icons\bigger\BiggerExit.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CD86D023B9140A7A8FAA2A0500C53E0769B6C9A2AE3B2AE55AAB0668BBD0D363"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// BiggerExit
/// </summary>
public partial class BiggerExit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/bigger/biggerexit.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Icons\bigger\BiggerExit.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\..\Icons\bigger\BiggerExit.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CD86D023B9140A7A8FAA2A0500C53E0769B6C9A2AE3B2AE55AAB0668BBD0D363"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// BiggerExit
/// </summary>
public partial class BiggerExit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/bigger/biggerexit.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Icons\bigger\BiggerExit.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\..\Icons\bigger\BiggerHide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "50542E4F06B961C40CEFBC1F8CE8B37AEB189888F56ACB449A1004FAD4FEC469"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// BiggerHide
/// </summary>
public partial class BiggerHide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/bigger/biggerhide.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Icons\bigger\BiggerHide.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\..\Icons\bigger\BiggerHide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "50542E4F06B961C40CEFBC1F8CE8B37AEB189888F56ACB449A1004FAD4FEC469"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// BiggerHide
/// </summary>
public partial class BiggerHide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/bigger/biggerhide.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Icons\bigger\BiggerHide.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\..\Icons\bigger\Exit.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1ADE54C893A30845214C64CADE7D2EB325CCBE3788735C469199323659A76334"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// Exit
/// </summary>
public partial class Exit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/bigger/exit.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Icons\bigger\Exit.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@@ -0,0 +1,75 @@
#pragma checksum "..\..\..\..\Icons\bigger\Hide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "6E503FDA872050142DBD26E41869171DD0269A50BC845EDF0E2B52D9DBE4E053"
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using Launcher.Icons;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace Launcher.Icons {
/// <summary>
/// Hide
/// </summary>
public partial class Hide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/Launcher;component/icons/bigger/hide.xaml", System.UriKind.Relative);
#line 1 "..\..\..\..\Icons\bigger\Hide.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@@ -1 +1 @@
21cd304e5cd64faab8552f39c89bc2ce4a9dd50f 5fb72dd80dc35edac920f3114c51e6762ebe4167

View File

@@ -16,3 +16,9 @@ F:\C#\Launcher\Launcher\obj\Debug\Launcher.csproj.CoreCompileInputs.cache
F:\C#\Launcher\Launcher\obj\Debug\Launcher.exe F:\C#\Launcher\Launcher\obj\Debug\Launcher.exe
F:\C#\Launcher\Launcher\obj\Debug\Launcher.pdb F:\C#\Launcher\Launcher\obj\Debug\Launcher.pdb
F:\C#\Launcher\Launcher\obj\Debug\GeneratedInternalTypeHelper.g.cs F:\C#\Launcher\Launcher\obj\Debug\GeneratedInternalTypeHelper.g.cs
F:\C#\Launcher\Launcher\obj\Debug\Icons\bigger\BiggerExit.g.cs
F:\C#\Launcher\Launcher\obj\Debug\Icons\bigger\BiggerExit.baml
F:\C#\Launcher\Launcher\obj\Debug\Icons\bigger\BiggerHide.g.cs
F:\C#\Launcher\Launcher\obj\Debug\Icons\Hide.g.cs
F:\C#\Launcher\Launcher\obj\Debug\Icons\bigger\BiggerHide.baml
F:\C#\Launcher\Launcher\obj\Debug\Icons\Hide.baml

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -10,11 +10,11 @@ none
false false
DEBUG;TRACE DEBUG;TRACE
F:\C#\Launcher\Launcher\App.xaml F:\C#\Launcher\Launcher\App.xaml
2689971809 51581495303
8-2012643788 11126713946
13-1505183044 13-1505183044
Icons\Exit.xaml;MainWindow.xaml; Icons\bigger\BiggerExit.xaml;Icons\bigger\BiggerHide.xaml;Icons\Hide.xaml;Icons\Exit.xaml;MainWindow.xaml;
False False

View File

@@ -10,11 +10,11 @@ none
false false
DEBUG;TRACE DEBUG;TRACE
F:\C#\Launcher\Launcher\App.xaml F:\C#\Launcher\Launcher\App.xaml
2689971809 51581495303
91439964141 12-715645421
13-1505183044 13-1505183044
Icons\Exit.xaml;MainWindow.xaml; Icons\bigger\BiggerExit.xaml;Icons\bigger\BiggerHide.xaml;Icons\Hide.xaml;Icons\Exit.xaml;MainWindow.xaml;
True True

View File

@@ -1,4 +1,5 @@
 
FF:\C#\Launcher\Launcher\Icons\bigger\BiggerHide.xaml;;
FF:\C#\Launcher\Launcher\MainWindow.xaml;; FF:\C#\Launcher\Launcher\MainWindow.xaml;;

View File

@@ -2,4 +2,7 @@
FF:\C#\Launcher\Launcher\Icons\Exit.xaml;; FF:\C#\Launcher\Launcher\Icons\Exit.xaml;;
FF:\C#\Launcher\Launcher\MainWindow.xaml;; FF:\C#\Launcher\Launcher\MainWindow.xaml;;
FF:\C#\Launcher\Launcher\Icons\bigger\BiggerExit.xaml;;
FF:\C#\Launcher\Launcher\Icons\bigger\BiggerHide.xaml;;
FF:\C#\Launcher\Launcher\Icons\Hide.xaml;;

Binary file not shown.

View File

@@ -1,4 +1,4 @@
#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E795143C1703EF58C51A05ACE6C7D7BEB00D55CFDF9D2F879C6085A51FE29A06" #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "064A0C2D2FCF5C8E218ACAE8A4AB358381A27602BD92244DE2AD44B84CC9ABED"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Этот код создан программой. // Этот код создан программой.
@@ -42,13 +42,45 @@ namespace Launcher {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 20 "..\..\MainWindow.xaml" #line 18 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.Exit Exit;
#line default
#line hidden
#line 19 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.BiggerExit BiggerExit;
#line default
#line hidden
#line 21 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label startgame; internal System.Windows.Controls.Label startgame;
#line default #line default
#line hidden #line hidden
#line 23 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.Hide Hide;
#line default
#line hidden
#line 24 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.BiggerHide BiggerHide;
#line default
#line hidden
private bool _contentLoaded; private bool _contentLoaded;
/// <summary> /// <summary>
@@ -87,20 +119,32 @@ namespace Launcher {
switch (connectionId) switch (connectionId)
{ {
case 1: case 1:
this.Exit = ((Launcher.Icons.Exit)(target));
return;
case 2:
this.BiggerExit = ((Launcher.Icons.BiggerExit)(target));
return;
case 3:
this.startgame = ((System.Windows.Controls.Label)(target)); this.startgame = ((System.Windows.Controls.Label)(target));
#line 20 "..\..\MainWindow.xaml" #line 21 "..\..\MainWindow.xaml"
this.startgame.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Label_MouseEnter); this.startgame.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Label_MouseEnter);
#line default #line default
#line hidden #line hidden
#line 20 "..\..\MainWindow.xaml" #line 21 "..\..\MainWindow.xaml"
this.startgame.MouseLeave += new System.Windows.Input.MouseEventHandler(this.startgame_MouseLeave); this.startgame.MouseLeave += new System.Windows.Input.MouseEventHandler(this.startgame_MouseLeave);
#line default #line default
#line hidden #line hidden
return; return;
case 4:
this.Hide = ((Launcher.Icons.Hide)(target));
return;
case 5:
this.BiggerHide = ((Launcher.Icons.BiggerHide)(target));
return;
} }
this._contentLoaded = true; this._contentLoaded = true;
} }

View File

@@ -1,4 +1,4 @@
#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E795143C1703EF58C51A05ACE6C7D7BEB00D55CFDF9D2F879C6085A51FE29A06" #pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "064A0C2D2FCF5C8E218ACAE8A4AB358381A27602BD92244DE2AD44B84CC9ABED"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// Этот код создан программой. // Этот код создан программой.
@@ -42,13 +42,45 @@ namespace Launcher {
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 20 "..\..\MainWindow.xaml" #line 18 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.Exit Exit;
#line default
#line hidden
#line 19 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.BiggerExit BiggerExit;
#line default
#line hidden
#line 21 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Label startgame; internal System.Windows.Controls.Label startgame;
#line default #line default
#line hidden #line hidden
#line 23 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.Hide Hide;
#line default
#line hidden
#line 24 "..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal Launcher.Icons.BiggerHide BiggerHide;
#line default
#line hidden
private bool _contentLoaded; private bool _contentLoaded;
/// <summary> /// <summary>
@@ -87,20 +119,32 @@ namespace Launcher {
switch (connectionId) switch (connectionId)
{ {
case 1: case 1:
this.Exit = ((Launcher.Icons.Exit)(target));
return;
case 2:
this.BiggerExit = ((Launcher.Icons.BiggerExit)(target));
return;
case 3:
this.startgame = ((System.Windows.Controls.Label)(target)); this.startgame = ((System.Windows.Controls.Label)(target));
#line 20 "..\..\MainWindow.xaml" #line 21 "..\..\MainWindow.xaml"
this.startgame.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Label_MouseEnter); this.startgame.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Label_MouseEnter);
#line default #line default
#line hidden #line hidden
#line 20 "..\..\MainWindow.xaml" #line 21 "..\..\MainWindow.xaml"
this.startgame.MouseLeave += new System.Windows.Input.MouseEventHandler(this.startgame_MouseLeave); this.startgame.MouseLeave += new System.Windows.Input.MouseEventHandler(this.startgame_MouseLeave);
#line default #line default
#line hidden #line hidden
return; return;
case 4:
this.Hide = ((Launcher.Icons.Hide)(target));
return;
case 5:
this.BiggerHide = ((Launcher.Icons.BiggerHide)(target));
return;
} }
this._contentLoaded = true; this._contentLoaded = true;
} }

Binary file not shown.