diff --git a/Icons/Hide.xaml b/Icons/Hide.xaml new file mode 100644 index 0000000..25314bd --- /dev/null +++ b/Icons/Hide.xaml @@ -0,0 +1,12 @@ + + + + + + diff --git a/Icons/Hide.xaml.cs b/Icons/Hide.xaml.cs new file mode 100644 index 0000000..6fc6106 --- /dev/null +++ b/Icons/Hide.xaml.cs @@ -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 +{ + /// + /// Логика взаимодействия для Exit.xaml + /// + public partial class Hide : UserControl + { + public Hide() + { + InitializeComponent(); + } + } +} diff --git a/Icons/bigger/BiggerExit.xaml b/Icons/bigger/BiggerExit.xaml new file mode 100644 index 0000000..5ba619d --- /dev/null +++ b/Icons/bigger/BiggerExit.xaml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Icons/bigger/BiggerExit.xaml.cs b/Icons/bigger/BiggerExit.xaml.cs new file mode 100644 index 0000000..ee68cad --- /dev/null +++ b/Icons/bigger/BiggerExit.xaml.cs @@ -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 +{ + /// + /// Логика взаимодействия для Exit.xaml + /// + public partial class BiggerExit : UserControl + { + public BiggerExit() + { + InitializeComponent(); + } + } +} diff --git a/Icons/bigger/BiggerHide.xaml b/Icons/bigger/BiggerHide.xaml new file mode 100644 index 0000000..e3efd82 --- /dev/null +++ b/Icons/bigger/BiggerHide.xaml @@ -0,0 +1,12 @@ + + + + + + diff --git a/Icons/bigger/BiggerHide.xaml.cs b/Icons/bigger/BiggerHide.xaml.cs new file mode 100644 index 0000000..2b8c6e7 --- /dev/null +++ b/Icons/bigger/BiggerHide.xaml.cs @@ -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 +{ + /// + /// Логика взаимодействия для Exit.xaml + /// + public partial class BiggerHide : UserControl + { + public BiggerHide() + { + InitializeComponent(); + } + } +} diff --git a/Launcher.csproj b/Launcher.csproj index 473710d..51ef99b 100644 --- a/Launcher.csproj +++ b/Launcher.csproj @@ -55,6 +55,18 @@ MSBuild:Compile Designer + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + Designer MSBuild:Compile @@ -69,6 +81,15 @@ + + BiggerExit.xaml + + + BiggerHide.xaml + + + Hide.xaml + Exit.xaml @@ -107,6 +128,83 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MainWindow.xaml b/MainWindow.xaml index 612ca4b..dfa91cf 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -14,11 +14,14 @@ - - - - diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index be83604..51e946e 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -15,6 +15,8 @@ using System.Windows.Navigation; using System.Windows.Shapes; using SteamWorkshopLib; +using System.Media; +using System.IO; namespace Launcher { @@ -37,11 +39,73 @@ namespace Launcher private void Label_MouseEnter(object sender, MouseEventArgs e) { 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) { 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; + } } } diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs index 02ee323..e5c4794 100644 --- a/Properties/Resources.Designer.cs +++ b/Properties/Resources.Designer.cs @@ -1,70 +1,270 @@ //------------------------------------------------------------------------------ // -// Этот код был создан программным средством. -// Версия среды выполнения: 4.0.30319.42000 +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 // -// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если -// код создан повторно. +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. // //------------------------------------------------------------------------------ - -namespace Launcher.Properties -{ +namespace Launcher.Properties { + using System; + + /// - /// Класс ресурсов со строгим типом для поиска локализованных строк и пр. + /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д. /// - // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder - // класс с помощью таких средств, как ResGen или Visual Studio. - // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen - // с параметром /str или заново постройте свой VS-проект. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + // Этот класс создан автоматически классом StronglyTypedResourceBuilder + // с помощью такого средства, как ResGen или Visual Studio. + // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen + // с параметром /str или перестройте свой проект VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - + internal class Resources { + private static global::System.Resources.ResourceManager resourceMan; - + private static global::System.Globalization.CultureInfo resourceCulture; - + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() - { + internal Resources() { } - + /// - /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом. + /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if ((resourceMan == null)) - { + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Launcher.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } - + /// - /// Переопределяет свойство CurrentUICulture текущего потока для всех - /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом. + /// Перезаписывает свойство CurrentUICulture текущего потока для всех + /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { + internal static global::System.Globalization.CultureInfo Culture { + get { return resourceCulture; } - set - { + set { resourceCulture = value; } } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _1 { + get { + return ResourceManager.GetStream("1", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _10 { + get { + return ResourceManager.GetStream("10", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _11 { + get { + return ResourceManager.GetStream("11", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _12 { + get { + return ResourceManager.GetStream("12", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _13 { + get { + return ResourceManager.GetStream("13", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _14 { + get { + return ResourceManager.GetStream("14", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _15 { + get { + return ResourceManager.GetStream("15", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _16 { + get { + return ResourceManager.GetStream("16", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _17 { + get { + return ResourceManager.GetStream("17", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _18 { + get { + return ResourceManager.GetStream("18", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _19 { + get { + return ResourceManager.GetStream("19", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _2 { + get { + return ResourceManager.GetStream("2", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _20 { + get { + return ResourceManager.GetStream("20", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _21 { + get { + return ResourceManager.GetStream("21", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _3 { + get { + return ResourceManager.GetStream("3", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _4 { + get { + return ResourceManager.GetStream("4", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _5 { + get { + return ResourceManager.GetStream("5", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _6 { + get { + return ResourceManager.GetStream("6", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _7 { + get { + return ResourceManager.GetStream("7", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _8 { + get { + return ResourceManager.GetStream("8", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream _9 { + get { + return ResourceManager.GetStream("9", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream ui_wife_messagecomplete { + get { + return ResourceManager.GetStream("ui_wife_messagecomplete", resourceCulture); + } + } + + /// + /// Поиск локализованного ресурса типа System.IO.UnmanagedMemoryStream, аналогичного System.IO.MemoryStream. + /// + internal static System.IO.UnmanagedMemoryStream ui_wife_messageincoming { + get { + return ResourceManager.GetStream("ui_wife_messageincoming", resourceCulture); + } + } } } diff --git a/Properties/Resources.resx b/Properties/Resources.resx index ffecec8..1a1ef71 100644 --- a/Properties/Resources.resx +++ b/Properties/Resources.resx @@ -46,7 +46,7 @@ mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with - : System.Serialization.Formatters.Binary.BinaryFormatter + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 @@ -60,6 +60,7 @@ : and then encoded with base64 encoding. --> + @@ -68,9 +69,10 @@ - + + @@ -85,9 +87,10 @@ - + + @@ -109,9 +112,79 @@ 2.0 - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_change_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_04.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_05.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_06.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_07.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_08.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_09.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\UI_Numpad_A_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\UI_Numpad_A_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_change_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\UI_Numpad_A_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\UI_Numpad_A_04.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_change_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_click_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_click_02.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_click_03.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_click_04.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_click_05.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_menu_hover_01.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_wife_messagecomplete.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\ui_wife_messageincoming.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/Resources/UI_Numpad_A_01.wav b/Resources/UI_Numpad_A_01.wav new file mode 100644 index 0000000..a745e5f Binary files /dev/null and b/Resources/UI_Numpad_A_01.wav differ diff --git a/Resources/UI_Numpad_A_02.wav b/Resources/UI_Numpad_A_02.wav new file mode 100644 index 0000000..62f4193 Binary files /dev/null and b/Resources/UI_Numpad_A_02.wav differ diff --git a/Resources/UI_Numpad_A_03.wav b/Resources/UI_Numpad_A_03.wav new file mode 100644 index 0000000..4d04121 Binary files /dev/null and b/Resources/UI_Numpad_A_03.wav differ diff --git a/Resources/UI_Numpad_A_04.wav b/Resources/UI_Numpad_A_04.wav new file mode 100644 index 0000000..24c1b64 Binary files /dev/null and b/Resources/UI_Numpad_A_04.wav differ diff --git a/Resources/UI_Numpad_Affirm.wav b/Resources/UI_Numpad_Affirm.wav new file mode 100644 index 0000000..c5bec2d Binary files /dev/null and b/Resources/UI_Numpad_Affirm.wav differ diff --git a/Resources/UI_Numpad_B.wav b/Resources/UI_Numpad_B.wav new file mode 100644 index 0000000..7c7d790 Binary files /dev/null and b/Resources/UI_Numpad_B.wav differ diff --git a/Resources/UI_Numpad_Deny.wav b/Resources/UI_Numpad_Deny.wav new file mode 100644 index 0000000..3d66a49 Binary files /dev/null and b/Resources/UI_Numpad_Deny.wav differ diff --git a/Resources/ui_menu_change_01.wav b/Resources/ui_menu_change_01.wav new file mode 100644 index 0000000..f0b42f1 Binary files /dev/null and b/Resources/ui_menu_change_01.wav differ diff --git a/Resources/ui_menu_change_02.wav b/Resources/ui_menu_change_02.wav new file mode 100644 index 0000000..96beafe Binary files /dev/null and b/Resources/ui_menu_change_02.wav differ diff --git a/Resources/ui_menu_change_03.wav b/Resources/ui_menu_change_03.wav new file mode 100644 index 0000000..f907cff Binary files /dev/null and b/Resources/ui_menu_change_03.wav differ diff --git a/Resources/ui_menu_click_01.wav b/Resources/ui_menu_click_01.wav new file mode 100644 index 0000000..df67e65 Binary files /dev/null and b/Resources/ui_menu_click_01.wav differ diff --git a/Resources/ui_menu_click_02.wav b/Resources/ui_menu_click_02.wav new file mode 100644 index 0000000..c7e0860 Binary files /dev/null and b/Resources/ui_menu_click_02.wav differ diff --git a/Resources/ui_menu_click_03.wav b/Resources/ui_menu_click_03.wav new file mode 100644 index 0000000..2b6e792 Binary files /dev/null and b/Resources/ui_menu_click_03.wav differ diff --git a/Resources/ui_menu_click_04.wav b/Resources/ui_menu_click_04.wav new file mode 100644 index 0000000..a43effe Binary files /dev/null and b/Resources/ui_menu_click_04.wav differ diff --git a/Resources/ui_menu_click_05.wav b/Resources/ui_menu_click_05.wav new file mode 100644 index 0000000..0617e10 Binary files /dev/null and b/Resources/ui_menu_click_05.wav differ diff --git a/Resources/ui_menu_hover_01.wav b/Resources/ui_menu_hover_01.wav new file mode 100644 index 0000000..19706b3 Binary files /dev/null and b/Resources/ui_menu_hover_01.wav differ diff --git a/Resources/ui_menu_hover_02.wav b/Resources/ui_menu_hover_02.wav new file mode 100644 index 0000000..0814309 Binary files /dev/null and b/Resources/ui_menu_hover_02.wav differ diff --git a/Resources/ui_menu_hover_03.wav b/Resources/ui_menu_hover_03.wav new file mode 100644 index 0000000..e5c70cb Binary files /dev/null and b/Resources/ui_menu_hover_03.wav differ diff --git a/Resources/ui_menu_hover_04.wav b/Resources/ui_menu_hover_04.wav new file mode 100644 index 0000000..51d4a53 Binary files /dev/null and b/Resources/ui_menu_hover_04.wav differ diff --git a/Resources/ui_menu_hover_05.wav b/Resources/ui_menu_hover_05.wav new file mode 100644 index 0000000..4cd6faf Binary files /dev/null and b/Resources/ui_menu_hover_05.wav differ diff --git a/Resources/ui_menu_hover_06.wav b/Resources/ui_menu_hover_06.wav new file mode 100644 index 0000000..4411a50 Binary files /dev/null and b/Resources/ui_menu_hover_06.wav differ diff --git a/Resources/ui_menu_hover_07.wav b/Resources/ui_menu_hover_07.wav new file mode 100644 index 0000000..d463c16 Binary files /dev/null and b/Resources/ui_menu_hover_07.wav differ diff --git a/Resources/ui_menu_hover_08.wav b/Resources/ui_menu_hover_08.wav new file mode 100644 index 0000000..92bae61 Binary files /dev/null and b/Resources/ui_menu_hover_08.wav differ diff --git a/Resources/ui_menu_hover_09.wav b/Resources/ui_menu_hover_09.wav new file mode 100644 index 0000000..d252956 Binary files /dev/null and b/Resources/ui_menu_hover_09.wav differ diff --git a/Resources/ui_wife_messagecomplete.wav b/Resources/ui_wife_messagecomplete.wav new file mode 100644 index 0000000..f9009dd Binary files /dev/null and b/Resources/ui_wife_messagecomplete.wav differ diff --git a/Resources/ui_wife_messageincoming.wav b/Resources/ui_wife_messageincoming.wav new file mode 100644 index 0000000..234af10 Binary files /dev/null and b/Resources/ui_wife_messageincoming.wav differ diff --git a/bin/Debug/Launcher.exe b/bin/Debug/Launcher.exe index 49074d9..0f7000f 100644 Binary files a/bin/Debug/Launcher.exe and b/bin/Debug/Launcher.exe differ diff --git a/bin/Debug/Launcher.pdb b/bin/Debug/Launcher.pdb index da30289..ffc7769 100644 Binary files a/bin/Debug/Launcher.pdb and b/bin/Debug/Launcher.pdb differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..40f65e2 Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 9eabb4b..32e0b03 100644 Binary files a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/obj/Debug/Icons/Exit - Копировать.g.i.cs b/obj/Debug/Icons/Exit - Копировать.g.i.cs new file mode 100644 index 0000000..7379801 --- /dev/null +++ b/obj/Debug/Icons/Exit - Копировать.g.i.cs @@ -0,0 +1,76 @@ +#pragma checksum "..\..\..\Icons\Exit - Копировать.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1ADE54C893A30845214C64CADE7D2EB325CCBE3788735C469199323659A76334" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// Exit + /// + public partial class Exit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/Hide.baml b/obj/Debug/Icons/Hide.baml new file mode 100644 index 0000000..ffcf231 Binary files /dev/null and b/obj/Debug/Icons/Hide.baml differ diff --git a/obj/Debug/Icons/Hide.g.cs b/obj/Debug/Icons/Hide.g.cs new file mode 100644 index 0000000..30727c5 --- /dev/null +++ b/obj/Debug/Icons/Hide.g.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\Icons\Hide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "6E503FDA872050142DBD26E41869171DD0269A50BC845EDF0E2B52D9DBE4E053" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// Hide + /// + public partial class Hide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/Hide.g.i.cs b/obj/Debug/Icons/Hide.g.i.cs new file mode 100644 index 0000000..30727c5 --- /dev/null +++ b/obj/Debug/Icons/Hide.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\Icons\Hide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "6E503FDA872050142DBD26E41869171DD0269A50BC845EDF0E2B52D9DBE4E053" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// Hide + /// + public partial class Hide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/bigger/BiggerExit.baml b/obj/Debug/Icons/bigger/BiggerExit.baml new file mode 100644 index 0000000..39784d4 Binary files /dev/null and b/obj/Debug/Icons/bigger/BiggerExit.baml differ diff --git a/obj/Debug/Icons/bigger/BiggerExit.g.cs b/obj/Debug/Icons/bigger/BiggerExit.g.cs new file mode 100644 index 0000000..c94ba74 --- /dev/null +++ b/obj/Debug/Icons/bigger/BiggerExit.g.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\..\Icons\bigger\BiggerExit.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CD86D023B9140A7A8FAA2A0500C53E0769B6C9A2AE3B2AE55AAB0668BBD0D363" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// BiggerExit + /// + public partial class BiggerExit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/bigger/BiggerExit.g.i.cs b/obj/Debug/Icons/bigger/BiggerExit.g.i.cs new file mode 100644 index 0000000..c94ba74 --- /dev/null +++ b/obj/Debug/Icons/bigger/BiggerExit.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\..\Icons\bigger\BiggerExit.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CD86D023B9140A7A8FAA2A0500C53E0769B6C9A2AE3B2AE55AAB0668BBD0D363" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// BiggerExit + /// + public partial class BiggerExit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/bigger/BiggerHide.baml b/obj/Debug/Icons/bigger/BiggerHide.baml new file mode 100644 index 0000000..0041bc1 Binary files /dev/null and b/obj/Debug/Icons/bigger/BiggerHide.baml differ diff --git a/obj/Debug/Icons/bigger/BiggerHide.g.cs b/obj/Debug/Icons/bigger/BiggerHide.g.cs new file mode 100644 index 0000000..cd8274f --- /dev/null +++ b/obj/Debug/Icons/bigger/BiggerHide.g.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\..\Icons\bigger\BiggerHide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "50542E4F06B961C40CEFBC1F8CE8B37AEB189888F56ACB449A1004FAD4FEC469" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// BiggerHide + /// + public partial class BiggerHide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/bigger/BiggerHide.g.i.cs b/obj/Debug/Icons/bigger/BiggerHide.g.i.cs new file mode 100644 index 0000000..cd8274f --- /dev/null +++ b/obj/Debug/Icons/bigger/BiggerHide.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\..\Icons\bigger\BiggerHide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "50542E4F06B961C40CEFBC1F8CE8B37AEB189888F56ACB449A1004FAD4FEC469" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// BiggerHide + /// + public partial class BiggerHide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/bigger/Exit.g.i.cs b/obj/Debug/Icons/bigger/Exit.g.i.cs new file mode 100644 index 0000000..e37fcb6 --- /dev/null +++ b/obj/Debug/Icons/bigger/Exit.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\..\Icons\bigger\Exit.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1ADE54C893A30845214C64CADE7D2EB325CCBE3788735C469199323659A76334" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// Exit + /// + public partial class Exit : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Icons/bigger/Hide.g.i.cs b/obj/Debug/Icons/bigger/Hide.g.i.cs new file mode 100644 index 0000000..887d2ba --- /dev/null +++ b/obj/Debug/Icons/bigger/Hide.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\..\..\Icons\bigger\Hide.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "6E503FDA872050142DBD26E41869171DD0269A50BC845EDF0E2B52D9DBE4E053" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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 { + + + /// + /// Hide + /// + public partial class Hide : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [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; + } + } +} + diff --git a/obj/Debug/Launcher.Properties.Resources.resources b/obj/Debug/Launcher.Properties.Resources.resources index 6c05a97..297d670 100644 Binary files a/obj/Debug/Launcher.Properties.Resources.resources and b/obj/Debug/Launcher.Properties.Resources.resources differ diff --git a/obj/Debug/Launcher.csproj.CoreCompileInputs.cache b/obj/Debug/Launcher.csproj.CoreCompileInputs.cache index 7044b62..e8a5545 100644 --- a/obj/Debug/Launcher.csproj.CoreCompileInputs.cache +++ b/obj/Debug/Launcher.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -21cd304e5cd64faab8552f39c89bc2ce4a9dd50f +5fb72dd80dc35edac920f3114c51e6762ebe4167 diff --git a/obj/Debug/Launcher.csproj.FileListAbsolute.txt b/obj/Debug/Launcher.csproj.FileListAbsolute.txt index 5cb7a0b..d74328c 100644 --- a/obj/Debug/Launcher.csproj.FileListAbsolute.txt +++ b/obj/Debug/Launcher.csproj.FileListAbsolute.txt @@ -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.pdb 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 diff --git a/obj/Debug/Launcher.csproj.GenerateResource.cache b/obj/Debug/Launcher.csproj.GenerateResource.cache index 99ddd43..02311d4 100644 Binary files a/obj/Debug/Launcher.csproj.GenerateResource.cache and b/obj/Debug/Launcher.csproj.GenerateResource.cache differ diff --git a/obj/Debug/Launcher.csprojAssemblyReference.cache b/obj/Debug/Launcher.csprojAssemblyReference.cache index 4e6fa8d..7514bc7 100644 Binary files a/obj/Debug/Launcher.csprojAssemblyReference.cache and b/obj/Debug/Launcher.csprojAssemblyReference.cache differ diff --git a/obj/Debug/Launcher.exe b/obj/Debug/Launcher.exe index 49074d9..0f7000f 100644 Binary files a/obj/Debug/Launcher.exe and b/obj/Debug/Launcher.exe differ diff --git a/obj/Debug/Launcher.g.resources b/obj/Debug/Launcher.g.resources index 27b4e7e..9b677b3 100644 Binary files a/obj/Debug/Launcher.g.resources and b/obj/Debug/Launcher.g.resources differ diff --git a/obj/Debug/Launcher.pdb b/obj/Debug/Launcher.pdb index da30289..ffc7769 100644 Binary files a/obj/Debug/Launcher.pdb and b/obj/Debug/Launcher.pdb differ diff --git a/obj/Debug/Launcher_MarkupCompile.cache b/obj/Debug/Launcher_MarkupCompile.cache index 2ab4967..aa0206f 100644 --- a/obj/Debug/Launcher_MarkupCompile.cache +++ b/obj/Debug/Launcher_MarkupCompile.cache @@ -10,11 +10,11 @@ none false DEBUG;TRACE F:\C#\Launcher\Launcher\App.xaml -2689971809 +51581495303 -8-2012643788 +11126713946 13-1505183044 -Icons\Exit.xaml;MainWindow.xaml; +Icons\bigger\BiggerExit.xaml;Icons\bigger\BiggerHide.xaml;Icons\Hide.xaml;Icons\Exit.xaml;MainWindow.xaml; False diff --git a/obj/Debug/Launcher_MarkupCompile.i.cache b/obj/Debug/Launcher_MarkupCompile.i.cache index 19a316e..56f4f31 100644 --- a/obj/Debug/Launcher_MarkupCompile.i.cache +++ b/obj/Debug/Launcher_MarkupCompile.i.cache @@ -10,11 +10,11 @@ none false DEBUG;TRACE F:\C#\Launcher\Launcher\App.xaml -2689971809 +51581495303 -91439964141 +12-715645421 13-1505183044 -Icons\Exit.xaml;MainWindow.xaml; +Icons\bigger\BiggerExit.xaml;Icons\bigger\BiggerHide.xaml;Icons\Hide.xaml;Icons\Exit.xaml;MainWindow.xaml; True diff --git a/obj/Debug/Launcher_MarkupCompile.i.lref b/obj/Debug/Launcher_MarkupCompile.i.lref index 83ae1c8..83cd34a 100644 --- a/obj/Debug/Launcher_MarkupCompile.i.lref +++ b/obj/Debug/Launcher_MarkupCompile.i.lref @@ -1,4 +1,5 @@  +FF:\C#\Launcher\Launcher\Icons\bigger\BiggerHide.xaml;; FF:\C#\Launcher\Launcher\MainWindow.xaml;; diff --git a/obj/Debug/Launcher_MarkupCompile.lref b/obj/Debug/Launcher_MarkupCompile.lref index 86551bc..291e166 100644 --- a/obj/Debug/Launcher_MarkupCompile.lref +++ b/obj/Debug/Launcher_MarkupCompile.lref @@ -2,4 +2,7 @@ FF:\C#\Launcher\Launcher\Icons\Exit.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;; diff --git a/obj/Debug/MainWindow.baml b/obj/Debug/MainWindow.baml index 05f9054..7310f60 100644 Binary files a/obj/Debug/MainWindow.baml and b/obj/Debug/MainWindow.baml differ diff --git a/obj/Debug/MainWindow.g.cs b/obj/Debug/MainWindow.g.cs index 55d8d8c..bb56fc1 100644 --- a/obj/Debug/MainWindow.g.cs +++ b/obj/Debug/MainWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E795143C1703EF58C51A05ACE6C7D7BEB00D55CFDF9D2F879C6085A51FE29A06" +#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "064A0C2D2FCF5C8E218ACAE8A4AB358381A27602BD92244DE2AD44B84CC9ABED" //------------------------------------------------------------------------------ // // Этот код создан программой. @@ -42,13 +42,45 @@ namespace Launcher { 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")] internal System.Windows.Controls.Label startgame; #line default #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; /// @@ -87,20 +119,32 @@ namespace Launcher { switch (connectionId) { 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)); - #line 20 "..\..\MainWindow.xaml" + #line 21 "..\..\MainWindow.xaml" this.startgame.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Label_MouseEnter); #line default #line hidden - #line 20 "..\..\MainWindow.xaml" + #line 21 "..\..\MainWindow.xaml" this.startgame.MouseLeave += new System.Windows.Input.MouseEventHandler(this.startgame_MouseLeave); #line default #line hidden return; + case 4: + this.Hide = ((Launcher.Icons.Hide)(target)); + return; + case 5: + this.BiggerHide = ((Launcher.Icons.BiggerHide)(target)); + return; } this._contentLoaded = true; } diff --git a/obj/Debug/MainWindow.g.i.cs b/obj/Debug/MainWindow.g.i.cs index 55d8d8c..bb56fc1 100644 --- a/obj/Debug/MainWindow.g.i.cs +++ b/obj/Debug/MainWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E795143C1703EF58C51A05ACE6C7D7BEB00D55CFDF9D2F879C6085A51FE29A06" +#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "064A0C2D2FCF5C8E218ACAE8A4AB358381A27602BD92244DE2AD44B84CC9ABED" //------------------------------------------------------------------------------ // // Этот код создан программой. @@ -42,13 +42,45 @@ namespace Launcher { 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")] internal System.Windows.Controls.Label startgame; #line default #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; /// @@ -87,20 +119,32 @@ namespace Launcher { switch (connectionId) { 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)); - #line 20 "..\..\MainWindow.xaml" + #line 21 "..\..\MainWindow.xaml" this.startgame.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Label_MouseEnter); #line default #line hidden - #line 20 "..\..\MainWindow.xaml" + #line 21 "..\..\MainWindow.xaml" this.startgame.MouseLeave += new System.Windows.Input.MouseEventHandler(this.startgame_MouseLeave); #line default #line hidden return; + case 4: + this.Hide = ((Launcher.Icons.Hide)(target)); + return; + case 5: + this.BiggerHide = ((Launcher.Icons.BiggerHide)(target)); + return; } this._contentLoaded = true; } diff --git a/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..b8ccae2 Binary files /dev/null and b/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ