Browse Source

Выполнил практическую работу №8

Егор 11 months ago
commit
a71f872863

+ 6 - 0
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>

+ 49 - 0
FormMain.Designer.cs

@@ -0,0 +1,49 @@
+namespace WindowsFormsAppUP02._02Alekseev8
+{
+    partial class FormMain
+    {
+        /// <summary>
+        /// Обязательная переменная конструктора.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Освободить все используемые ресурсы.
+        /// </summary>
+        /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Код, автоматически созданный конструктором форм Windows
+
+        /// <summary>
+        /// Требуемый метод для поддержки конструктора — не изменяйте 
+        /// содержимое этого метода с помощью редактора кода.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.SuspendLayout();
+            // 
+            // FormMain
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(500, 450);
+            this.Name = "FormMain";
+            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+            this.Text = "Рисуем с помощью Paint";
+            this.Paint += new System.Windows.Forms.PaintEventHandler(this.FormMainPaint);
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+    }
+}
+

+ 63 - 0
FormMain.cs

@@ -0,0 +1,63 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace WindowsFormsAppUP02._02Alekseev8
+{
+    /// <summary>
+    /// Класс FormMain, в котором происходит генерация рисунка
+    /// </summary>
+    public partial class FormMain : Form
+    {
+        /// <summary>
+        /// Инициализация компонентов
+        /// </summary>
+        public FormMain()
+        {
+            InitializeComponent();
+        }
+        
+        /// <summary>
+        /// Метод, в котором создаются объекты Graphics, происходит формирование рисунка с помощью класса Brushes и циклов For
+        /// </summary>
+        /// <param name="sender"></param>
+        /// <param name="e"></param>
+        private void FormMainPaint(object sender, PaintEventArgs e)
+        {
+
+            Graphics g = e.Graphics;
+            g.Clear(Color.White);
+
+            for (int i = 0; i < 1; i++)
+            {
+                g.DrawLine(new Pen(Brushes.Brown, 2), 10, 4 * i + 20, 200, 4 * i + 20);
+            }
+
+            for (int i = 0; i < 1; i++)
+            {
+                g.DrawLine(new Pen(Brushes.Brown, 3), 10, 4 * i + 30, 200, 4 * i + 30);
+            }
+
+            for (int i = 0; i < 1; i++)
+            {
+                g.DrawLine(new Pen(Brushes.Brown, 4), 10, 4 * i + 40, 200, 4 * i + 40);
+            }
+
+            for (int i = 0; i < 1; i++)
+            {
+                g.DrawLine(new Pen(Brushes.Brown, 5), 10, 4 * i + 50, 200, 4 * i + 50);
+            }
+
+            for (int i = 0; i < 1; i++)
+            {
+                g.DrawLine(new Pen(Brushes.Brown, 6), 10, 4 * i + 60, 200, 4 * i + 60);
+            }
+        }
+    }
+}

+ 120 - 0
FormMain.resx

@@ -0,0 +1,120 @@
+<?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.Runtime.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:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <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" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </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" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </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=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>

+ 22 - 0
Program.cs

@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace WindowsFormsAppUP02._02Alekseev8
+{
+    internal static class Program
+    {
+        /// <summary>
+        /// Главная точка входа для приложения.
+        /// </summary>
+        [STAThread]
+        static void Main()
+        {
+            Application.EnableVisualStyles();
+            Application.SetCompatibleTextRenderingDefault(false);
+            Application.Run(new FormMain());
+        }
+    }
+}

+ 36 - 0
Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
+// связанных со сборкой.
+[assembly: AssemblyTitle("WindowsFormsAppUP02.02Alekseev8")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("WindowsFormsAppUP02.02Alekseev8")]
+[assembly: AssemblyCopyright("Copyright ©  2024")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// COM, следует установить атрибут ComVisible в TRUE для этого типа.
+[assembly: ComVisible(false)]
+
+// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
+[assembly: Guid("e57130e0-8bb3-45e3-9acb-0054f34058d2")]
+
+// Сведения о версии сборки состоят из указанных ниже четырех значений:
+//
+//      Основной номер версии
+//      Дополнительный номер версии
+//      Номер сборки
+//      Редакция
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию 
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 71 - 0
Properties/Resources.Designer.cs

@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программным средством.
+//     Версия среды выполнения: 4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
+//     код создан повторно.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace WindowsFormsAppUP02._02Alekseev8.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("WindowsFormsAppUP02._02Alekseev8.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
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>

+ 30 - 0
Properties/Settings.Designer.cs

@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+// <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 WindowsFormsAppUP02._02Alekseev8.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
Properties/Settings.settings

@@ -0,0 +1,7 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
+  <Profiles>
+    <Profile Name="(Default)" />
+  </Profiles>
+  <Settings />
+</SettingsFile>

+ 73 - 0
WindowsFormsAppUP02.02Alekseev.sln

@@ -0,0 +1,73 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.7.34024.191
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev", "WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev.csproj", "{C308A8FA-CDD3-49A2-8085-B4467979337E}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev2", "WindowsFormsAppUP02.02Alekseev2\WindowsFormsAppUP02.02Alekseev2.csproj", "{248973AA-8014-49AA-BC51-B0639BBFB489}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev3", "WindowsFormsAppUP02.02Alekseev3\WindowsFormsAppUP02.02Alekseev3.csproj", "{00370593-1ABD-46CC-8CCE-B8F3BA7BA111}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev4", "WindowsFormsAppUP02.02Alekseev4\WindowsFormsAppUP02.02Alekseev4.csproj", "{0665FF92-90A6-4EB1-BB26-6FD339CF5995}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev5", "WindowsFormsAppUP02.02Alekseev5\WindowsFormsAppUP02.02Alekseev5.csproj", "{26C683E2-A9C6-450B-BC94-9E1A1A97ACF7}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev6", "WindowsFormsAppUP02.02Alekseev6\WindowsFormsAppUP02.02Alekseev6.csproj", "{A5286405-23E5-4828-900C-79BB5F4CC1B7}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev7", "WindowsFormsAppUP02.02Alekseev7\WindowsFormsAppUP02.02Alekseev7.csproj", "{C73ED663-B49D-47D7-AAD1-13A3479EF46C}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTestProjectUP02.02Alekseev9", "UnitTestProjectUP02.02Alekseev9\UnitTestProjectUP02.02Alekseev9.csproj", "{F199426C-1040-4709-861D-039B4C9F34D9}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppUP02.02Alekseev8", "WindowsFormsAppUP02.02Alekseev8\WindowsFormsAppUP02.02Alekseev8.csproj", "{E57130E0-8BB3-45E3-9ACB-0054F34058D2}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{C308A8FA-CDD3-49A2-8085-B4467979337E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{C308A8FA-CDD3-49A2-8085-B4467979337E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{C308A8FA-CDD3-49A2-8085-B4467979337E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{C308A8FA-CDD3-49A2-8085-B4467979337E}.Release|Any CPU.Build.0 = Release|Any CPU
+		{248973AA-8014-49AA-BC51-B0639BBFB489}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{248973AA-8014-49AA-BC51-B0639BBFB489}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{248973AA-8014-49AA-BC51-B0639BBFB489}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{248973AA-8014-49AA-BC51-B0639BBFB489}.Release|Any CPU.Build.0 = Release|Any CPU
+		{00370593-1ABD-46CC-8CCE-B8F3BA7BA111}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{00370593-1ABD-46CC-8CCE-B8F3BA7BA111}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{00370593-1ABD-46CC-8CCE-B8F3BA7BA111}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{00370593-1ABD-46CC-8CCE-B8F3BA7BA111}.Release|Any CPU.Build.0 = Release|Any CPU
+		{0665FF92-90A6-4EB1-BB26-6FD339CF5995}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{0665FF92-90A6-4EB1-BB26-6FD339CF5995}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{0665FF92-90A6-4EB1-BB26-6FD339CF5995}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{0665FF92-90A6-4EB1-BB26-6FD339CF5995}.Release|Any CPU.Build.0 = Release|Any CPU
+		{26C683E2-A9C6-450B-BC94-9E1A1A97ACF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{26C683E2-A9C6-450B-BC94-9E1A1A97ACF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{26C683E2-A9C6-450B-BC94-9E1A1A97ACF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{26C683E2-A9C6-450B-BC94-9E1A1A97ACF7}.Release|Any CPU.Build.0 = Release|Any CPU
+		{A5286405-23E5-4828-900C-79BB5F4CC1B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{A5286405-23E5-4828-900C-79BB5F4CC1B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{A5286405-23E5-4828-900C-79BB5F4CC1B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{A5286405-23E5-4828-900C-79BB5F4CC1B7}.Release|Any CPU.Build.0 = Release|Any CPU
+		{C73ED663-B49D-47D7-AAD1-13A3479EF46C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{C73ED663-B49D-47D7-AAD1-13A3479EF46C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{C73ED663-B49D-47D7-AAD1-13A3479EF46C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{C73ED663-B49D-47D7-AAD1-13A3479EF46C}.Release|Any CPU.Build.0 = Release|Any CPU
+		{F199426C-1040-4709-861D-039B4C9F34D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{F199426C-1040-4709-861D-039B4C9F34D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{F199426C-1040-4709-861D-039B4C9F34D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{F199426C-1040-4709-861D-039B4C9F34D9}.Release|Any CPU.Build.0 = Release|Any CPU
+		{E57130E0-8BB3-45E3-9ACB-0054F34058D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{E57130E0-8BB3-45E3-9ACB-0054F34058D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{E57130E0-8BB3-45E3-9ACB-0054F34058D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{E57130E0-8BB3-45E3-9ACB-0054F34058D2}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {1CE4DB7D-9336-47AB-BF6C-2D40D4474F98}
+	EndGlobalSection
+EndGlobal

+ 83 - 0
WindowsFormsAppUP02.02Alekseev8.csproj

@@ -0,0 +1,83 @@
+<?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>{E57130E0-8BB3-45E3-9ACB-0054F34058D2}</ProjectGuid>
+    <OutputType>WinExe</OutputType>
+    <RootNamespace>WindowsFormsAppUP02._02Alekseev8</RootNamespace>
+    <AssemblyName>WindowsFormsAppUP02.02Alekseev8</AssemblyName>
+    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <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.Core" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Deployment" />
+    <Reference Include="System.Drawing" />
+    <Reference Include="System.Net.Http" />
+    <Reference Include="System.Windows.Forms" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="FormMain.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="FormMain.Designer.cs">
+      <DependentUpon>FormMain.cs</DependentUpon>
+    </Compile>
+    <Compile Include="Program.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+    <EmbeddedResource Include="FormMain.resx">
+      <DependentUpon>FormMain.cs</DependentUpon>
+    </EmbeddedResource>
+    <EmbeddedResource Include="Properties\Resources.resx">
+      <Generator>ResXFileCodeGenerator</Generator>
+      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
+      <SubType>Designer</SubType>
+    </EmbeddedResource>
+    <Compile Include="Properties\Resources.Designer.cs">
+      <AutoGen>True</AutoGen>
+      <DependentUpon>Resources.resx</DependentUpon>
+    </Compile>
+    <None Include="Properties\Settings.settings">
+      <Generator>SettingsSingleFileGenerator</Generator>
+      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
+    </None>
+    <Compile Include="Properties\Settings.Designer.cs">
+      <AutoGen>True</AutoGen>
+      <DependentUpon>Settings.settings</DependentUpon>
+      <DesignTimeSharedInput>True</DesignTimeSharedInput>
+    </Compile>
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project>

BIN
bin/Debug/WindowsFormsAppUP02.02Alekseev8.exe


+ 6 - 0
bin/Debug/WindowsFormsAppUP02.02Alekseev8.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
bin/Debug/WindowsFormsAppUP02.02Alekseev8.pdb


+ 4 - 0
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
obj/Debug/DesignTimeResolveAssemblyReferences.cache


BIN
obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache


BIN
obj/Debug/WindowsFormsAppUP02.02Alekseev8.csproj.AssemblyReference.cache


+ 1 - 0
obj/Debug/WindowsFormsAppUP02.02Alekseev8.csproj.CoreCompileInputs.cache

@@ -0,0 +1 @@
+df8daa71122233cede449c2f237cdc053c01c705

+ 10 - 0
obj/Debug/WindowsFormsAppUP02.02Alekseev8.csproj.FileListAbsolute.txt

@@ -0,0 +1,10 @@
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\bin\Debug\WindowsFormsAppUP02.02Alekseev8.exe.config
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\bin\Debug\WindowsFormsAppUP02.02Alekseev8.exe
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\bin\Debug\WindowsFormsAppUP02.02Alekseev8.pdb
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02.02Alekseev8.csproj.AssemblyReference.cache
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02._02Alekseev8.FormMain.resources
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02._02Alekseev8.Properties.Resources.resources
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02.02Alekseev8.csproj.GenerateResource.cache
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02.02Alekseev8.csproj.CoreCompileInputs.cache
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02.02Alekseev8.exe
+G:\УП 02.02 С# 52\WindowsFormsAppUP02.02Alekseev\WindowsFormsAppUP02.02Alekseev8\obj\Debug\WindowsFormsAppUP02.02Alekseev8.pdb

BIN
obj/Debug/WindowsFormsAppUP02.02Alekseev8.csproj.GenerateResource.cache


BIN
obj/Debug/WindowsFormsAppUP02.02Alekseev8.exe


BIN
obj/Debug/WindowsFormsAppUP02.02Alekseev8.pdb


BIN
obj/Debug/WindowsFormsAppUP02._02Alekseev8.FormMain.resources


BIN
obj/Debug/WindowsFormsAppUP02._02Alekseev8.Properties.Resources.resources