Калашникова Юлия Алексеевна 3 anni fa
commit
cb89d6ea39
58 ha cambiato i file con 1857 aggiunte e 0 eliminazioni
  1. BIN
      .vs/KFC/v16/.suo
  2. 25 0
      KFC.sln
  3. 6 0
      KFC/App.config
  4. 65 0
      KFC/App.xaml
  5. 17 0
      KFC/App.xaml.cs
  6. 137 0
      KFC/KFC.csproj
  7. 22 0
      KFC/MainWindow.xaml
  8. 38 0
      KFC/MainWindow.xaml.cs
  9. 55 0
      KFC/Properties/AssemblyInfo.cs
  10. 70 0
      KFC/Properties/Resources.Designer.cs
  11. 117 0
      KFC/Properties/Resources.resx
  12. 29 0
      KFC/Properties/Settings.Designer.cs
  13. 7 0
      KFC/Properties/Settings.settings
  14. 95 0
      KFC/Windows/Menu.xaml
  15. 100 0
      KFC/Windows/Menu.xaml.cs
  16. 63 0
      KFC/Windows/Order.xaml
  17. 32 0
      KFC/Windows/Order.xaml.cs
  18. BIN
      KFC/bin/Debug/KFC.exe
  19. 6 0
      KFC/bin/Debug/KFC.exe.config
  20. BIN
      KFC/bin/Debug/KFC.pdb
  21. 4 0
      KFC/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
  22. BIN
      KFC/obj/Debug/App.baml
  23. 83 0
      KFC/obj/Debug/App.g.cs
  24. 83 0
      KFC/obj/Debug/App.g.i.cs
  25. BIN
      KFC/obj/Debug/DesignTimeResolveAssemblyReferences.cache
  26. BIN
      KFC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
  27. BIN
      KFC/obj/Debug/KFC.Properties.Resources.resources
  28. BIN
      KFC/obj/Debug/KFC.csproj.AssemblyReference.cache
  29. 1 0
      KFC/obj/Debug/KFC.csproj.CoreCompileInputs.cache
  30. 20 0
      KFC/obj/Debug/KFC.csproj.FileListAbsolute.txt
  31. BIN
      KFC/obj/Debug/KFC.csproj.GenerateResource.cache
  32. BIN
      KFC/obj/Debug/KFC.exe
  33. BIN
      KFC/obj/Debug/KFC.g.resources
  34. BIN
      KFC/obj/Debug/KFC.pdb
  35. 20 0
      KFC/obj/Debug/KFC_MarkupCompile.cache
  36. 20 0
      KFC/obj/Debug/KFC_MarkupCompile.i.cache
  37. 4 0
      KFC/obj/Debug/KFC_MarkupCompile.i.lref
  38. 6 0
      KFC/obj/Debug/KFC_MarkupCompile.lref
  39. BIN
      KFC/obj/Debug/MainWindow.baml
  40. 97 0
      KFC/obj/Debug/MainWindow.g.cs
  41. 97 0
      KFC/obj/Debug/MainWindow.g.i.cs
  42. BIN
      KFC/obj/Debug/Windows/Menu.baml
  43. 175 0
      KFC/obj/Debug/Windows/Menu.g.cs
  44. 175 0
      KFC/obj/Debug/Windows/Menu.g.i.cs
  45. BIN
      KFC/obj/Debug/Windows/Order.baml
  46. 94 0
      KFC/obj/Debug/Windows/Order.g.cs
  47. 94 0
      KFC/obj/Debug/Windows/Order.g.i.cs
  48. BIN
      KFC/Картинки/Order1.jpg
  49. BIN
      KFC/Картинки/Order2.1.png
  50. BIN
      KFC/Картинки/main btn.jpg
  51. BIN
      KFC/Картинки/main1.jpg
  52. BIN
      KFC/Картинки/main2.jpg
  53. BIN
      KFC/Картинки/main3.jpg
  54. BIN
      KFC/Картинки/«Острый Шефбургер Джуниор».jpg
  55. BIN
      KFC/Картинки/десерты.jpg
  56. BIN
      KFC/Картинки/твистер.jpg
  57. BIN
      KFC/Картинки/фри по деревенски.jpg
  58. BIN
      KFC/Картинки/фри стандарт.jpg

BIN
.vs/KFC/v16/.suo


+ 25 - 0
KFC.sln

@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31605.320
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KFC", "KFC\KFC.csproj", "{C597797B-6AB6-4C71-BCBF-B1C69FA0F16E}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{C597797B-6AB6-4C71-BCBF-B1C69FA0F16E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{C597797B-6AB6-4C71-BCBF-B1C69FA0F16E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{C597797B-6AB6-4C71-BCBF-B1C69FA0F16E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{C597797B-6AB6-4C71-BCBF-B1C69FA0F16E}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {9FB89CA5-D0D0-4E07-B0FB-7C25D29C1B12}
+	EndGlobalSection
+EndGlobal

+ 6 - 0
KFC/App.config

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
+    </startup>
+</configuration>

+ 65 - 0
KFC/App.xaml

@@ -0,0 +1,65 @@
+<Application x:Class="KFC.App"
+             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+             xmlns:local="clr-namespace:KFC"
+             StartupUri="MainWindow.xaml">
+    <Application.Resources>
+
+        <Style x:Key="FocusVisual">
+            <Setter Property="Control.Template">
+                <Setter.Value>
+                    <ControlTemplate>
+                        <Rectangle Margin="2" SnapsToDevicePixels="true" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" StrokeThickness="1" StrokeDashArray="1 2"/>
+                    </ControlTemplate>
+                </Setter.Value>
+            </Setter>
+        </Style>
+        <SolidColorBrush x:Key="Button.Static.Background" Color="#FFDDDDDD"/>
+        <SolidColorBrush x:Key="Button.Static.Border" Color="#FF707070"/>
+        <SolidColorBrush x:Key="Button.MouseOver.Background" Color="#FFBEE6FD"/>
+        <SolidColorBrush x:Key="Button.MouseOver.Border" Color="#FF3C7FB1"/>
+        <SolidColorBrush x:Key="Button.Pressed.Background" Color="#FFC4E5F6"/>
+        <SolidColorBrush x:Key="Button.Pressed.Border" Color="#FF2C628B"/>
+        <SolidColorBrush x:Key="Button.Disabled.Background" Color="#FFF4F4F4"/>
+        <SolidColorBrush x:Key="Button.Disabled.Border" Color="#FFADB2B5"/>
+        <SolidColorBrush x:Key="Button.Disabled.Foreground" Color="#FF838383"/>
+        <Style x:Key="ButtonKFC" TargetType="{x:Type Button}">
+            <Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}"/>
+            <Setter Property="Background" Value="{StaticResource Button.Static.Background}"/>
+            <Setter Property="BorderBrush" Value="{StaticResource Button.Static.Border}"/>
+            <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
+            <Setter Property="BorderThickness" Value="1"/>
+            <Setter Property="HorizontalContentAlignment" Value="Center"/>
+            <Setter Property="VerticalContentAlignment" Value="Center"/>
+            <Setter Property="Padding" Value="1"/>
+            <Setter Property="Template">
+                <Setter.Value>
+                    <ControlTemplate TargetType="{x:Type Button}">
+                        <Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
+                            <ContentPresenter x:Name="contentPresenter" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
+                        </Border>
+                        <ControlTemplate.Triggers>
+                            <Trigger Property="IsDefaulted" Value="true">
+                                <Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
+                            </Trigger>
+                            <Trigger Property="IsMouseOver" Value="true">
+                                <Setter Property="Background" TargetName="border" Value="{StaticResource Button.MouseOver.Background}"/>
+                                <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.MouseOver.Border}"/>
+                            </Trigger>
+                            <Trigger Property="IsPressed" Value="true">
+                                <Setter Property="Background" TargetName="border" Value="{StaticResource Button.Pressed.Background}"/>
+                                <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.Pressed.Border}"/>
+                            </Trigger>
+                            <Trigger Property="IsEnabled" Value="false">
+                                <Setter Property="Background" TargetName="border" Value="{StaticResource Button.Disabled.Background}"/>
+                                <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.Disabled.Border}"/>
+                                <Setter Property="TextElement.Foreground" TargetName="contentPresenter" Value="{StaticResource Button.Disabled.Foreground}"/>
+                            </Trigger>
+                        </ControlTemplate.Triggers>
+                    </ControlTemplate>
+                </Setter.Value>
+            </Setter>
+        </Style>
+
+    </Application.Resources>
+</Application>

+ 17 - 0
KFC/App.xaml.cs

@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace KFC
+{
+    /// <summary>
+    /// Логика взаимодействия для App.xaml
+    /// </summary>
+    public partial class App : Application
+    {
+    }
+}

+ 137 - 0
KFC/KFC.csproj

@@ -0,0 +1,137 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{C597797B-6AB6-4C71-BCBF-B1C69FA0F16E}</ProjectGuid>
+    <OutputType>WinExe</OutputType>
+    <RootNamespace>KFC</RootNamespace>
+    <AssemblyName>KFC</AssemblyName>
+    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+    <WarningLevel>4</WarningLevel>
+    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
+    <Deterministic>true</Deterministic>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Xml" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="System.Net.Http" />
+    <Reference Include="System.Xaml">
+      <RequiredTargetFramework>4.0</RequiredTargetFramework>
+    </Reference>
+    <Reference Include="WindowsBase" />
+    <Reference Include="PresentationCore" />
+    <Reference Include="PresentationFramework" />
+  </ItemGroup>
+  <ItemGroup>
+    <ApplicationDefinition Include="App.xaml">
+      <Generator>MSBuild:Compile</Generator>
+      <SubType>Designer</SubType>
+    </ApplicationDefinition>
+    <Compile Include="Windows\Menu.xaml.cs">
+      <DependentUpon>Menu.xaml</DependentUpon>
+    </Compile>
+    <Compile Include="Windows\Order.xaml.cs">
+      <DependentUpon>Order.xaml</DependentUpon>
+    </Compile>
+    <Page Include="MainWindow.xaml">
+      <Generator>MSBuild:Compile</Generator>
+      <SubType>Designer</SubType>
+    </Page>
+    <Compile Include="App.xaml.cs">
+      <DependentUpon>App.xaml</DependentUpon>
+      <SubType>Code</SubType>
+    </Compile>
+    <Compile Include="MainWindow.xaml.cs">
+      <DependentUpon>MainWindow.xaml</DependentUpon>
+      <SubType>Code</SubType>
+    </Compile>
+    <Page Include="Windows\Menu.xaml">
+      <SubType>Designer</SubType>
+      <Generator>MSBuild:Compile</Generator>
+    </Page>
+    <Page Include="Windows\Order.xaml">
+      <SubType>Designer</SubType>
+      <Generator>MSBuild:Compile</Generator>
+    </Page>
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Properties\AssemblyInfo.cs">
+      <SubType>Code</SubType>
+    </Compile>
+    <Compile Include="Properties\Resources.Designer.cs">
+      <AutoGen>True</AutoGen>
+      <DesignTime>True</DesignTime>
+      <DependentUpon>Resources.resx</DependentUpon>
+    </Compile>
+    <Compile Include="Properties\Settings.Designer.cs">
+      <AutoGen>True</AutoGen>
+      <DependentUpon>Settings.settings</DependentUpon>
+      <DesignTimeSharedInput>True</DesignTimeSharedInput>
+    </Compile>
+    <EmbeddedResource Include="Properties\Resources.resx">
+      <Generator>ResXFileCodeGenerator</Generator>
+      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
+    </EmbeddedResource>
+    <None Include="Properties\Settings.settings">
+      <Generator>SettingsSingleFileGenerator</Generator>
+      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
+    </None>
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\main btn.jpg" />
+    <Resource Include="Картинки\main1.jpg" />
+    <Resource Include="Картинки\main2.jpg" />
+    <Resource Include="Картинки\main3.jpg" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\Order1.jpg" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\Order2.1.png" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\«Острый Шефбургер Джуниор».jpg" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\десерты.jpg" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\твистер.jpg" />
+  </ItemGroup>
+  <ItemGroup>
+    <Resource Include="Картинки\фри по деревенски.jpg" />
+    <Resource Include="Картинки\фри стандарт.jpg" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project>

+ 22 - 0
KFC/MainWindow.xaml

@@ -0,0 +1,22 @@
+<Window x:Class="KFC.MainWindow"
+        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+        xmlns:local="clr-namespace:KFC"
+        mc:Ignorable="d"
+        Title="MainWindow" Height="789" Width="450" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen">
+    <Grid>
+        <Grid.ColumnDefinitions>
+            <ColumnDefinition Width="275*"/>
+            <ColumnDefinition Width="174*"/>
+        </Grid.ColumnDefinitions>
+        <Image HorizontalAlignment="Left" Height="300" Margin="1,243,-110.4,0" VerticalAlignment="Top" Width="559" Source="Картинки/main2.jpg" Grid.ColumnSpan="2"/>
+        <Image HorizontalAlignment="Left" Height="256" Margin="1,543,-0.4,-21.4" VerticalAlignment="Top" Width="449" Source="Картинки/main3.jpg" Grid.ColumnSpan="2"/>
+        <Button Content="Сделать заказ" HorizontalAlignment="Left" Margin="0,461,-0.4,0" VerticalAlignment="Top" Width="450" Height="82" Background="#99FFFFFF" BorderBrush="#99FFFFFF" FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="36" Foreground="#FF9A3423" Click="Button_Click" Grid.ColumnSpan="2"/>
+        <Border x:Name="bord" BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="778" VerticalAlignment="Top" Width="450" Background="#7F000000" Visibility="Hidden" Grid.ColumnSpan="2" Margin="0,0,-0.4,-0.4"/>
+        <Image HorizontalAlignment="Left" Height="271" Margin="0,0,-0.4,0" VerticalAlignment="Top" Width="450" Source="Картинки/main1.jpg" Grid.ColumnSpan="2"/>
+        <Image HorizontalAlignment="Left" Height="143" VerticalAlignment="Top" Width="154" Source="Картинки/main btn.jpg" RenderTransformOrigin="0.517,0.327"/>
+
+    </Grid>
+</Window>

+ 38 - 0
KFC/MainWindow.xaml.cs

@@ -0,0 +1,38 @@
+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 KFC
+{
+    /// <summary>
+    /// Логика взаимодействия для MainWindow.xaml
+    /// </summary>
+    public partial class MainWindow : Window
+    {
+        public MainWindow()
+        {
+            InitializeComponent();
+        }
+
+        private void Button_Click(object sender, RoutedEventArgs e)
+        {
+            bord.Visibility = Visibility.Visible; 
+            Windows.Window1 f = new Windows.Window1(); 
+            f.ShowDialog(); 
+            this.Hide();
+            Windows.Window2 c = new Windows.Window2();
+            c.Show();
+        }
+    }
+}

+ 55 - 0
KFC/Properties/AssemblyInfo.cs

@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набор атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
+// связанные со сборкой.
+[assembly: AssemblyTitle("KFC")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("KFC")]
+[assembly: AssemblyCopyright("Copyright ©  2021")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// из модели COM, установите атрибут ComVisible для этого типа в значение true.
+[assembly: ComVisible(false)]
+
+//Чтобы начать создание локализуемых приложений, задайте
+//<UICulture>CultureYouAreCodingWith</UICulture> в файле .csproj
+//в <PropertyGroup>. Например, при использовании английского (США)
+//в своих исходных файлах установите <UICulture> в en-US.  Затем отмените преобразование в комментарий
+//атрибута NeutralResourceLanguage ниже.  Обновите "en-US" в
+//строка внизу для обеспечения соответствия настройки UICulture в файле проекта.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+    ResourceDictionaryLocation.None, //где расположены словари ресурсов по конкретным тематикам
+                                     //(используется, если ресурс не найден на странице,
+                                     // или в словарях ресурсов приложения)
+    ResourceDictionaryLocation.SourceAssembly //где расположен словарь универсальных ресурсов
+                                              //(используется, если ресурс не найден на странице,
+                                              // в приложении или в каких-либо словарях ресурсов для конкретной темы)
+)]
+
+
+// Сведения о версии для сборки включают четыре следующих значения:
+//
+//      Основной номер версии
+//      Дополнительный номер версии
+//      Номер сборки
+//      Номер редакции
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию 
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 70 - 0
KFC/Properties/Resources.Designer.cs

@@ -0,0 +1,70 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код был создан программным средством.
+//     Версия среды выполнения: 4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
+//     код создан повторно.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+
+namespace KFC.Properties
+{
+    /// <summary>
+    ///   Класс ресурсов со строгим типом для поиска локализованных строк и пр.
+    /// </summary>
+    // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder
+    // класс с помощью таких средств, как ResGen или Visual Studio.
+    // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen
+    // с параметром /str или заново постройте свой VS-проект.
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+    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()
+        {
+        }
+
+        /// <summary>
+        ///   Возврат кэшированного экземпляра ResourceManager, используемого этим классом.
+        /// </summary>
+        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+        internal static global::System.Resources.ResourceManager ResourceManager
+        {
+            get
+            {
+                if ((resourceMan == null))
+                {
+                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("KFC.Properties.Resources", typeof(Resources).Assembly);
+                    resourceMan = temp;
+                }
+                return resourceMan;
+            }
+        }
+
+        /// <summary>
+        ///   Переопределяет свойство CurrentUICulture текущего потока для всех
+        ///   подстановки ресурсов с помощью этого класса ресурсов со строгим типом.
+        /// </summary>
+        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+        internal static global::System.Globalization.CultureInfo Culture
+        {
+            get
+            {
+                return resourceCulture;
+            }
+            set
+            {
+                resourceCulture = value;
+            }
+        }
+    }
+}

+ 117 - 0
KFC/Properties/Resources.resx

@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : 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:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <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:sequence>
+              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>

+ 29 - 0
KFC/Properties/Settings.Designer.cs

@@ -0,0 +1,29 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     This code was generated by a tool.
+//     Runtime Version:4.0.30319.42000
+//
+//     Changes to this file may cause incorrect behavior and will be lost if
+//     the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+
+namespace KFC.Properties
+{
+    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+    internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+    {
+
+        private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+        public static Settings Default
+        {
+            get
+            {
+                return defaultInstance;
+            }
+        }
+    }
+}

+ 7 - 0
KFC/Properties/Settings.settings

@@ -0,0 +1,7 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
+  <Profiles>
+    <Profile Name="(Default)" />
+  </Profiles>
+  <Settings />
+</SettingsFile>

+ 95 - 0
KFC/Windows/Menu.xaml

@@ -0,0 +1,95 @@
+<Window x:Class="KFC.Windows.Window2"
+        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+        xmlns:local="clr-namespace:KFC.Windows"
+        mc:Ignorable="d"
+        Title="Window2" Height="778" Width="450" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen">
+    <Grid>
+        <TextBox x:Name="tbfin" HorizontalAlignment="Left" Height="520" Margin="0,186,0,0" TextWrapping="Wrap" Text="Ваш заказ:" VerticalAlignment="Top" Width="450" FontFamily="/kfc;component/Fonts/#Montserrat Medium" RenderTransformOrigin="0.443,0.335"/>
+        <TabControl x:Name="menu" HorizontalAlignment="Left" Height="778" VerticalAlignment="Top" Width="450">
+            <TabItem Height="111" Width="111" Margin="0,194,0,-194">
+                <TabItem.Header>
+                    <StackPanel>
+                        <Label FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="14">Бургеры</Label>
+                        <Image Source="/KFC;component/Картинки/«Острый Шефбургер Джуниор».jpg" />
+                    </StackPanel>
+                </TabItem.Header>
+                <Grid Background="#FFE5E5E5" Margin="0,80,0,0">
+                    <Button Click="Button_Click_1" HorizontalAlignment="Left" Margin="145,57,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/«Острый Шефбургер Джуниор».jpg" />
+                    </Button>
+                    <Button Click="Button_Click_2" HorizontalAlignment="Left" Margin="297,57,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/«Острый Шефбургер Джуниор».jpg" Width="111" />
+                    </Button>
+                    <Label Content="Шефбургер" HorizontalAlignment="Left" Margin="160,32,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="Шефбургер Делюкс" HorizontalAlignment="Left" Margin="282,32,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="150р" HorizontalAlignment="Left" Margin="181,173,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="175р" HorizontalAlignment="Left" Margin="335,173,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                </Grid>
+            </TabItem>
+            <TabItem  Height="111" Width="111" Margin="-111,306,111,-306">
+                <TabItem.Header>
+                    <StackPanel>
+                        <Label FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="14">Десерты</Label>
+                        <Image Source="/KFC;component/Картинки/десерты.jpg" />
+                    </StackPanel>
+                </TabItem.Header>
+                <Grid Background="#FFE5E5E5" Margin="0,80,0,0">
+                    <Button Click="Button_Click_3" HorizontalAlignment="Left" Margin="216,41,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/десерты.jpg" />
+                    </Button>
+                    <Label Content="Чизкейк" HorizontalAlignment="Left" Margin="240,16,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="100р" HorizontalAlignment="Left" Margin="255,157,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                </Grid>
+            </TabItem>
+            <TabItem Height="111" Width="111" Margin="-222,419,222,-419">
+                <TabItem.Header>
+                    <StackPanel>
+                        <Label FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="14">Твистеры</Label>
+                        <Image Source="/KFC;component/Картинки/твистер.jpg" Height="88" Width="92" />
+                    </StackPanel>
+                </TabItem.Header>
+                <Grid Background="#FFE5E5E5" Margin="0,80,0,0">
+                    <Button Click="Button_Click_4" HorizontalAlignment="Left" Margin="154,59,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/твистер.jpg" Height="111" Width="111" />
+                    </Button>
+                    <Button Click="Button_Click_5" HorizontalAlignment="Left" Margin="298,59,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/твистер.jpg" Height="101" Width="102" />
+                    </Button>
+                    <Label Content="Боксмастер" HorizontalAlignment="Left" Margin="166,34,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="Твистер" HorizontalAlignment="Left" Margin="324,34,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="250р" HorizontalAlignment="Left" Margin="192,175,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="70р" HorizontalAlignment="Left" Margin="338,175,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                </Grid>
+            </TabItem>
+            <TabItem Height="111" Width="111" Margin="-333,530,333,-530">
+                <TabItem.Header>
+                    <StackPanel>
+                        <Label FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="14">Картофель</Label>
+                        <Image Source="/KFC;component/Картинки/фри стандарт.jpg" Height="82" Width="90" />
+                    </StackPanel>
+                </TabItem.Header>
+                <Grid Background="#FFE5E5E5" Margin="0,80,0,0">
+
+
+                    <Button Click="Button_Click_6" HorizontalAlignment="Left" Margin="144,39,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/фри по деревенски.jpg" Height="107" Width="90" />
+                    </Button>
+                    <Button Click="Button_Click_7" HorizontalAlignment="Left" Margin="297,39,0,0" VerticalAlignment="Top" Width="111" Height="111">
+                        <Image Source="/KFC;component/Картинки/фри стандарт.jpg" Height="98" Width="98" />
+                    </Button>
+                    <Label Content="Деревенский" HorizontalAlignment="Left" Margin="144,10,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="Стандартный" HorizontalAlignment="Left" Margin="313,10,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                    <Label Content="80р" HorizontalAlignment="Left" Margin="183,155,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium" RenderTransformOrigin="0.498,-5.525"/>
+                    <Label Content="100р" HorizontalAlignment="Left" Margin="330,155,0,0" VerticalAlignment="Top" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+                </Grid>
+            </TabItem>
+
+        </TabControl>
+        <Image Height="176" Margin="134,10,134,0" VerticalAlignment="Top" Source="/KFC;component/Картинки/main btn.jpg"/>
+        <Button Click="Button_Click" Content="Оплатить" HorizontalAlignment="Left" VerticalAlignment="Top" Width="100" Margin="332,728,0,0" FontFamily="/kfc;component/Fonts/#Montserrat Medium" Height="26" FontSize="14" Background="#FFCB2D3D" BorderBrush="White" Foreground="White"/>
+        <Label x:Name="itog" Content="Итог: " HorizontalAlignment="Left" Margin="207,728,0,0" VerticalAlignment="Top" Width="120" FontFamily="/kfc;component/Fonts/#Montserrat Medium"/>
+    </Grid>
+</Window>

+ 100 - 0
KFC/Windows/Menu.xaml.cs

@@ -0,0 +1,100 @@
+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.Shapes;
+
+namespace KFC.Windows
+{
+    /// <summary>
+    /// Логика взаимодействия для Menu.xaml
+    /// </summary>
+    public partial class Window2 : Window
+    {
+        public int sum = 0;
+        public string bracket = "";
+
+        public Window2()
+        {
+            InitializeComponent();
+        }
+
+        private void Button_Click(object sender, RoutedEventArgs e)
+        {
+            menu.Visibility = Visibility.Hidden;
+        }
+
+        public void Update()
+        {
+            itog.Content = "Итог: " + sum;
+        }
+
+
+        private void Button_Click_1(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 150);
+            tbfin.AppendText(Environment.NewLine + "Шефбургер\t\t\t150 p.");
+            Update();
+        }
+
+        private void Button_Click_2(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 175);
+            tbfin.AppendText(Environment.NewLine + "Шефбургер Делюкс\t\t175 p.");
+            Update();
+        }
+
+        private void Button_Click_3(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 100);
+            tbfin.AppendText(Environment.NewLine + "Чизкейк\t\t\t\t100 p.");
+            Update();
+        }
+
+        private void Button_Click_4(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 250);
+            tbfin.AppendText(Environment.NewLine + "Боксмастер\t\t\t250 p.");
+            Update();
+        }
+
+        private void Button_Click_5(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 70);
+            tbfin.AppendText(Environment.NewLine + "Твистер\t\t\t\t70 p.");
+            Update();
+        }
+
+        private void Button_Click_6(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 80);
+            tbfin.AppendText(Environment.NewLine + "Деревенский\t\t\t80 p.");
+            Update();
+        }
+
+        private void Button_Click_7(object sender, RoutedEventArgs e)
+        {
+            sum = GetNewSum(sum, 100);
+            tbfin.AppendText(Environment.NewLine + "Стандартный\t\t\t100 p.");
+            Update();
+        }
+
+        public int GetNewSum(int sum, int price)
+        {
+            return (sum + price);
+        }
+
+        public void AddNewProduct(string ProductName)
+        {
+            bracket += Environment.NewLine + ProductName;
+        }
+    }
+}

+ 63 - 0
KFC/Windows/Order.xaml

@@ -0,0 +1,63 @@
+<Window x:Class="KFC.Windows.Window1"
+        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+        xmlns:local="clr-namespace:KFC.Windows"
+        mc:Ignorable="d"
+        Title="Window1" Height="250" Width="400" ResizeMode="NoResize" WindowStyle="None" WindowStartupLocation="CenterScreen">
+    <Window.Resources>
+        <Style x:Key="ButtonKFC2" TargetType="{x:Type Button}">
+            <Setter Property="FocusVisualStyle" Value="{StaticResource FocusVisual}"/>
+            <Setter Property="Background" Value="{StaticResource Button.Static.Background}"/>
+            <Setter Property="BorderBrush" Value="{StaticResource Button.Static.Border}"/>
+            <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
+            <Setter Property="BorderThickness" Value="1"/>
+            <Setter Property="HorizontalContentAlignment" Value="Center"/>
+            <Setter Property="VerticalContentAlignment" Value="Center"/>
+            <Setter Property="Padding" Value="1"/>
+            <Setter Property="Template">
+                <Setter.Value>
+                    <ControlTemplate TargetType="{x:Type Button}">
+                        <Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
+                            <ContentPresenter x:Name="contentPresenter" Focusable="False" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
+                        </Border>
+                        <ControlTemplate.Triggers>
+                            <Trigger Property="IsDefaulted" Value="true">
+                                <Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}"/>
+                            </Trigger>
+                            <Trigger Property="IsMouseOver" Value="true">
+                                <Setter Property="Background" TargetName="border" Value="{StaticResource Button.MouseOver.Background}"/>
+                                <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.MouseOver.Border}"/>
+                            </Trigger>
+                            <Trigger Property="IsPressed" Value="true">
+                                <Setter Property="Background" TargetName="border" Value="{StaticResource Button.Pressed.Background}"/>
+                                <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.Pressed.Border}"/>
+                            </Trigger>
+                            <Trigger Property="IsEnabled" Value="false">
+                                <Setter Property="Background" TargetName="border" Value="{StaticResource Button.Disabled.Background}"/>
+                                <Setter Property="BorderBrush" TargetName="border" Value="{StaticResource Button.Disabled.Border}"/>
+                                <Setter Property="TextElement.Foreground" TargetName="contentPresenter" Value="{StaticResource Button.Disabled.Foreground}"/>
+                            </Trigger>
+                        </ControlTemplate.Triggers>
+                    </ControlTemplate>
+                </Setter.Value>
+            </Setter>
+        </Style>
+    </Window.Resources>
+    <Grid>
+        <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="250" VerticalAlignment="Top" Width="400" Background="#FFC1D9DE"/>
+
+        <Button Click="Button_Click" Margin="66,59,218,75" Style="{DynamicResource ButtonKFC}">
+            <Image Source="/KFC;component/Картинки/Order2.1.png" />
+        </Button>
+        <Button Click="Button_Click" Margin="218,59,66,75" Style="{DynamicResource ButtonKFC2}">
+            <Button.Background>
+                <ImageBrush/>
+            </Button.Background>
+            <Image Source="/KFC;component/Картинки/Order1.jpg" />
+        </Button>
+        <Label Content="Здесь" HorizontalAlignment="Left" Margin="90,180,0,0" VerticalAlignment="Top" Height="29" Width="68" FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="18"/>
+        <Label Content="С собой" HorizontalAlignment="Left" Margin="232,180,0,0" VerticalAlignment="Top" Height="29" Width="87" FontFamily="/kfc;component/Fonts/#Montserrat Medium" FontSize="18"/>
+    </Grid>
+</Window>

+ 32 - 0
KFC/Windows/Order.xaml.cs

@@ -0,0 +1,32 @@
+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.Shapes;
+
+namespace KFC.Windows
+{
+    /// <summary>
+    /// Логика взаимодействия для Order.xaml
+    /// </summary>
+    public partial class Window1 : Window
+    {
+        public Window1()
+        {
+            InitializeComponent();
+        }
+
+        private void Button_Click(object sender, RoutedEventArgs e)
+        {
+            this.Close();
+        }
+    }
+}

BIN
KFC/bin/Debug/KFC.exe


+ 6 - 0
KFC/bin/Debug/KFC.exe.config

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
+    </startup>
+</configuration>

BIN
KFC/bin/Debug/KFC.pdb


+ 4 - 0
KFC/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs

@@ -0,0 +1,4 @@
+// <autogenerated />
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]

BIN
KFC/obj/Debug/App.baml


+ 83 - 0
KFC/obj/Debug/App.g.cs

@@ -0,0 +1,83 @@
+#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "DD160715097052F96B0499737BE5BB045B0BC9F734BB690B6BCDED44B25408D9"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC;
+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 KFC {
+    
+    
+    /// <summary>
+    /// App
+    /// </summary>
+    public partial class App : System.Windows.Application {
+        
+        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;
+            
+            #line 5 "..\..\App.xaml"
+            this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+            
+            #line default
+            #line hidden
+            System.Uri resourceLocater = new System.Uri("/KFC;component/app.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\App.xaml"
+            System.Windows.Application.LoadComponent(this, resourceLocater);
+            
+            #line default
+            #line hidden
+        }
+        
+        /// <summary>
+        /// Application Entry Point.
+        /// </summary>
+        [System.STAThreadAttribute()]
+        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+        public static void Main() {
+            KFC.App app = new KFC.App();
+            app.InitializeComponent();
+            app.Run();
+        }
+    }
+}
+

+ 83 - 0
KFC/obj/Debug/App.g.i.cs

@@ -0,0 +1,83 @@
+#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "DD160715097052F96B0499737BE5BB045B0BC9F734BB690B6BCDED44B25408D9"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC;
+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 KFC {
+    
+    
+    /// <summary>
+    /// App
+    /// </summary>
+    public partial class App : System.Windows.Application {
+        
+        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;
+            
+            #line 5 "..\..\App.xaml"
+            this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+            
+            #line default
+            #line hidden
+            System.Uri resourceLocater = new System.Uri("/KFC;component/app.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\App.xaml"
+            System.Windows.Application.LoadComponent(this, resourceLocater);
+            
+            #line default
+            #line hidden
+        }
+        
+        /// <summary>
+        /// Application Entry Point.
+        /// </summary>
+        [System.STAThreadAttribute()]
+        [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+        [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+        public static void Main() {
+            KFC.App app = new KFC.App();
+            app.InitializeComponent();
+            app.Run();
+        }
+    }
+}
+

BIN
KFC/obj/Debug/DesignTimeResolveAssemblyReferences.cache


BIN
KFC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache


BIN
KFC/obj/Debug/KFC.Properties.Resources.resources


BIN
KFC/obj/Debug/KFC.csproj.AssemblyReference.cache


+ 1 - 0
KFC/obj/Debug/KFC.csproj.CoreCompileInputs.cache

@@ -0,0 +1 @@
+325b3a84b4f9159a9066d6ee37fda2e9f22d26de

+ 20 - 0
KFC/obj/Debug/KFC.csproj.FileListAbsolute.txt

@@ -0,0 +1,20 @@
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.csproj.AssemblyReference.cache
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\MainWindow.g.cs
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\Windows\Menu.g.cs
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\Windows\Order.g.cs
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\App.g.cs
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC_MarkupCompile.cache
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC_MarkupCompile.lref
+Z:\2 курс\ТИС\KFC\KFC\bin\Debug\KFC.exe.config
+Z:\2 курс\ТИС\KFC\KFC\bin\Debug\KFC.exe
+Z:\2 курс\ТИС\KFC\KFC\bin\Debug\KFC.pdb
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\App.baml
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\MainWindow.baml
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\Windows\Menu.baml
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\Windows\Order.baml
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.g.resources
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.Properties.Resources.resources
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.csproj.GenerateResource.cache
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.csproj.CoreCompileInputs.cache
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.exe
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\KFC.pdb

BIN
KFC/obj/Debug/KFC.csproj.GenerateResource.cache


BIN
KFC/obj/Debug/KFC.exe


BIN
KFC/obj/Debug/KFC.g.resources


BIN
KFC/obj/Debug/KFC.pdb


+ 20 - 0
KFC/obj/Debug/KFC_MarkupCompile.cache

@@ -0,0 +1,20 @@
+KFC
+
+
+winexe
+C#
+.cs
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\
+KFC
+none
+false
+DEBUG;TRACE
+Z:\2 курс\ТИС\KFC\KFC\App.xaml
+3-1206890373
+
+7929744236
+13-1505183044
+MainWindow.xaml;Windows\Menu.xaml;Windows\Order.xaml;
+
+False
+

+ 20 - 0
KFC/obj/Debug/KFC_MarkupCompile.i.cache

@@ -0,0 +1,20 @@
+KFC
+
+
+winexe
+C#
+.cs
+Z:\2 курс\ТИС\KFC\KFC\obj\Debug\
+KFC
+none
+false
+DEBUG;TRACE
+Z:\2 курс\ТИС\KFC\KFC\App.xaml
+3-1206890373
+
+887384869
+13-1505183044
+MainWindow.xaml;Windows\Menu.xaml;Windows\Order.xaml;
+
+True
+

+ 4 - 0
KFC/obj/Debug/KFC_MarkupCompile.i.lref

@@ -0,0 +1,4 @@
+
+
+FZ:\2 курс\ТИС\KFC\KFC\Windows\Menu.xaml;;
+

+ 6 - 0
KFC/obj/Debug/KFC_MarkupCompile.lref

@@ -0,0 +1,6 @@
+
+FZ:\2 курс\ТИС\KFC\KFC\App.xaml;;
+FZ:\2 курс\ТИС\KFC\KFC\MainWindow.xaml;;
+FZ:\2 курс\ТИС\KFC\KFC\Windows\Menu.xaml;;
+FZ:\2 курс\ТИС\KFC\KFC\Windows\Order.xaml;;
+

BIN
KFC/obj/Debug/MainWindow.baml


+ 97 - 0
KFC/obj/Debug/MainWindow.g.cs

@@ -0,0 +1,97 @@
+#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "19515924601A7B16DF7A0275E244E984623885A4C2A8BA61C1B382E54151AB9E"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC;
+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 KFC {
+    
+    
+    /// <summary>
+    /// MainWindow
+    /// </summary>
+    public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+        
+        
+        #line 17 "..\..\MainWindow.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.Border bord;
+        
+        #line default
+        #line hidden
+        
+        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("/KFC;component/mainwindow.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\MainWindow.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) {
+            switch (connectionId)
+            {
+            case 1:
+            
+            #line 16 "..\..\MainWindow.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            case 2:
+            this.bord = ((System.Windows.Controls.Border)(target));
+            return;
+            }
+            this._contentLoaded = true;
+        }
+    }
+}
+

+ 97 - 0
KFC/obj/Debug/MainWindow.g.i.cs

@@ -0,0 +1,97 @@
+#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "19515924601A7B16DF7A0275E244E984623885A4C2A8BA61C1B382E54151AB9E"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC;
+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 KFC {
+    
+    
+    /// <summary>
+    /// MainWindow
+    /// </summary>
+    public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+        
+        
+        #line 17 "..\..\MainWindow.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.Border bord;
+        
+        #line default
+        #line hidden
+        
+        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("/KFC;component/mainwindow.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\MainWindow.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) {
+            switch (connectionId)
+            {
+            case 1:
+            
+            #line 16 "..\..\MainWindow.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            case 2:
+            this.bord = ((System.Windows.Controls.Border)(target));
+            return;
+            }
+            this._contentLoaded = true;
+        }
+    }
+}
+

BIN
KFC/obj/Debug/Windows/Menu.baml


+ 175 - 0
KFC/obj/Debug/Windows/Menu.g.cs

@@ -0,0 +1,175 @@
+#pragma checksum "..\..\..\Windows\Menu.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "2B56F1D5233127536820526142B4AC9CFAC893D0DD17E82CBD4424B7BE8F5B96"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC.Windows;
+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 KFC.Windows {
+    
+    
+    /// <summary>
+    /// Window2
+    /// </summary>
+    public partial class Window2 : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+        
+        
+        #line 10 "..\..\..\Windows\Menu.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.TextBox tbfin;
+        
+        #line default
+        #line hidden
+        
+        
+        #line 11 "..\..\..\Windows\Menu.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.TabControl menu;
+        
+        #line default
+        #line hidden
+        
+        
+        #line 93 "..\..\..\Windows\Menu.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.Label itog;
+        
+        #line default
+        #line hidden
+        
+        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("/KFC;component/windows/menu.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\..\Windows\Menu.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) {
+            switch (connectionId)
+            {
+            case 1:
+            this.tbfin = ((System.Windows.Controls.TextBox)(target));
+            return;
+            case 2:
+            this.menu = ((System.Windows.Controls.TabControl)(target));
+            return;
+            case 3:
+            
+            #line 20 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);
+            
+            #line default
+            #line hidden
+            return;
+            case 4:
+            
+            #line 23 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2);
+            
+            #line default
+            #line hidden
+            return;
+            case 5:
+            
+            #line 40 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_3);
+            
+            #line default
+            #line hidden
+            return;
+            case 6:
+            
+            #line 55 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_4);
+            
+            #line default
+            #line hidden
+            return;
+            case 7:
+            
+            #line 58 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_5);
+            
+            #line default
+            #line hidden
+            return;
+            case 8:
+            
+            #line 77 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_6);
+            
+            #line default
+            #line hidden
+            return;
+            case 9:
+            
+            #line 80 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_7);
+            
+            #line default
+            #line hidden
+            return;
+            case 10:
+            
+            #line 92 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            case 11:
+            this.itog = ((System.Windows.Controls.Label)(target));
+            return;
+            }
+            this._contentLoaded = true;
+        }
+    }
+}
+

+ 175 - 0
KFC/obj/Debug/Windows/Menu.g.i.cs

@@ -0,0 +1,175 @@
+#pragma checksum "..\..\..\Windows\Menu.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "2B56F1D5233127536820526142B4AC9CFAC893D0DD17E82CBD4424B7BE8F5B96"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC.Windows;
+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 KFC.Windows {
+    
+    
+    /// <summary>
+    /// Window2
+    /// </summary>
+    public partial class Window2 : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+        
+        
+        #line 10 "..\..\..\Windows\Menu.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.TextBox tbfin;
+        
+        #line default
+        #line hidden
+        
+        
+        #line 11 "..\..\..\Windows\Menu.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.TabControl menu;
+        
+        #line default
+        #line hidden
+        
+        
+        #line 93 "..\..\..\Windows\Menu.xaml"
+        [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+        internal System.Windows.Controls.Label itog;
+        
+        #line default
+        #line hidden
+        
+        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("/KFC;component/windows/menu.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\..\Windows\Menu.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) {
+            switch (connectionId)
+            {
+            case 1:
+            this.tbfin = ((System.Windows.Controls.TextBox)(target));
+            return;
+            case 2:
+            this.menu = ((System.Windows.Controls.TabControl)(target));
+            return;
+            case 3:
+            
+            #line 20 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);
+            
+            #line default
+            #line hidden
+            return;
+            case 4:
+            
+            #line 23 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2);
+            
+            #line default
+            #line hidden
+            return;
+            case 5:
+            
+            #line 40 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_3);
+            
+            #line default
+            #line hidden
+            return;
+            case 6:
+            
+            #line 55 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_4);
+            
+            #line default
+            #line hidden
+            return;
+            case 7:
+            
+            #line 58 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_5);
+            
+            #line default
+            #line hidden
+            return;
+            case 8:
+            
+            #line 77 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_6);
+            
+            #line default
+            #line hidden
+            return;
+            case 9:
+            
+            #line 80 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_7);
+            
+            #line default
+            #line hidden
+            return;
+            case 10:
+            
+            #line 92 "..\..\..\Windows\Menu.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            case 11:
+            this.itog = ((System.Windows.Controls.Label)(target));
+            return;
+            }
+            this._contentLoaded = true;
+        }
+    }
+}
+

BIN
KFC/obj/Debug/Windows/Order.baml


+ 94 - 0
KFC/obj/Debug/Windows/Order.g.cs

@@ -0,0 +1,94 @@
+#pragma checksum "..\..\..\Windows\Order.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "836651D35A7C782B3F7BB727DF3E72DBD090CFEB0E6A58BC6FE4EA219CF41717"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC.Windows;
+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 KFC.Windows {
+    
+    
+    /// <summary>
+    /// Window1
+    /// </summary>
+    public partial class Window1 : System.Windows.Window, 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("/KFC;component/windows/order.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\..\Windows\Order.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) {
+            switch (connectionId)
+            {
+            case 1:
+            
+            #line 51 "..\..\..\Windows\Order.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            case 2:
+            
+            #line 54 "..\..\..\Windows\Order.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            }
+            this._contentLoaded = true;
+        }
+    }
+}
+

+ 94 - 0
KFC/obj/Debug/Windows/Order.g.i.cs

@@ -0,0 +1,94 @@
+#pragma checksum "..\..\..\Windows\Order.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "836651D35A7C782B3F7BB727DF3E72DBD090CFEB0E6A58BC6FE4EA219CF41717"
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using KFC.Windows;
+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 KFC.Windows {
+    
+    
+    /// <summary>
+    /// Window1
+    /// </summary>
+    public partial class Window1 : System.Windows.Window, 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("/KFC;component/windows/order.xaml", System.UriKind.Relative);
+            
+            #line 1 "..\..\..\Windows\Order.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) {
+            switch (connectionId)
+            {
+            case 1:
+            
+            #line 51 "..\..\..\Windows\Order.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            case 2:
+            
+            #line 54 "..\..\..\Windows\Order.xaml"
+            ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
+            
+            #line default
+            #line hidden
+            return;
+            }
+            this._contentLoaded = true;
+        }
+    }
+}
+

BIN
KFC/Картинки/Order1.jpg


BIN
KFC/Картинки/Order2.1.png


BIN
KFC/Картинки/main btn.jpg


BIN
KFC/Картинки/main1.jpg


BIN
KFC/Картинки/main2.jpg


BIN
KFC/Картинки/main3.jpg


BIN
KFC/Картинки/«Острый Шефбургер Джуниор».jpg


BIN
KFC/Картинки/десерты.jpg


BIN
KFC/Картинки/твистер.jpg


BIN
KFC/Картинки/фри по деревенски.jpg


BIN
KFC/Картинки/фри стандарт.jpg