не готовая

This commit is contained in:
Victoria_Isaeva 2024-06-02 16:49:31 +04:00
parent 0e48b2d265
commit a7bcd33560
18 changed files with 833 additions and 75 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectAirbus
{
public enum DirectionType
{
Up = 1,
Down = 2,
Left = 3,
Right = 4
}
}

View File

@ -0,0 +1,206 @@
using ProjectAirbus;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectAirbus
{
public class DrawningAirbus
{
public DrawningWindows Windows;
public EntityAirbus? EntityAirbus { get; private set; }
private int? _pictureWidth;
private int? _pictureHeight;
private int? _startPosX;
private int? _startPosY;
private readonly int _drawningAirbusWidth = 140;
private readonly int _drawningAirbusHeight = 60;
public bool AdditionalEngine;
public void Init(int speed, double weight, Color bodyColor, Color
additionalColor, bool compartment, bool engine)
{
EntityAirbus = new EntityAirbus();
EntityAirbus.Init(speed, weight, bodyColor, additionalColor,
compartment, engine);
_pictureWidth = null;
_pictureHeight = null;
_startPosX = null;
_startPosY = null;
Windows = new DrawningWindows();
}
public bool SetPictureSize(int width, int height)
{
if (_drawningAirbusWidth < width && _drawningAirbusHeight < height)
{
_pictureWidth = width;
_pictureHeight = height;
if (_startPosX.HasValue && _startPosY.HasValue)
{
SetPosition(_startPosX.Value, _startPosY.Value);
}
return true;
}
return false;
}
public void SetPosition(int x, int y)
{
if (!_pictureHeight.HasValue || !_pictureWidth.HasValue)
{
return;
}
if (x < 0 || x + _drawningAirbusWidth > _pictureWidth || y < 0 || y + _drawningAirbusHeight > _pictureHeight)
{
_startPosX = _pictureWidth - _drawningAirbusWidth;
_startPosY = _pictureHeight - _drawningAirbusHeight;
}
else
{
_startPosX = x;
_startPosY = y;
}
}
public bool MoveTransport(DirectionType direction)
{
if (EntityAirbus == null || !_startPosX.HasValue || !_startPosY.HasValue)
{
return false;
}
switch (direction)
{
//влево
case DirectionType.Left:
if (_startPosX.Value - EntityAirbus.Step > 0)
{
_startPosX -= (int)EntityAirbus.Step;
}
return true;
//вверх
case DirectionType.Up:
if (_startPosY.Value - EntityAirbus.Step > 0)
{
_startPosY -= (int)EntityAirbus.Step;
}
return true;
// вправо
case DirectionType.Right:
if (_startPosX.Value + EntityAirbus.Step + _drawningAirbusWidth < _pictureWidth)
{
_startPosX += (int)EntityAirbus.Step;
}
//TODO прописать логику сдвига в право
return true;
//вниз
case DirectionType.Down:
if (_startPosY.Value + EntityAirbus.Step + _drawningAirbusHeight < _pictureHeight)
{
_startPosY += (int)EntityAirbus.Step;
}
return true;
default:
return false;
}
}
public void DrawTransport(Graphics g)
{
if (EntityAirbus == null || !_startPosX.HasValue || !_startPosY.HasValue)
{ return; }
Pen pen = new(Color.Black);
Brush brush = new SolidBrush(Color.Black);
Brush additionalBrush = new SolidBrush(EntityAirbus.AdditionalColor);
Brush bodyBrush = new SolidBrush(EntityAirbus.BodyColor);
g.FillRectangle(bodyBrush, _startPosX.Value, _startPosY.Value + 20, 120, 20);
g.DrawRectangle(pen, _startPosX.Value, _startPosY.Value + 20, 120, 20);
Point point1 = new Point(_startPosX.Value, _startPosY.Value);
Point point2 = new Point(_startPosX.Value + 20, _startPosY.Value + 20);
Point point3 = new Point(_startPosX.Value, _startPosY.Value + 20);
Point point4 = new Point(_startPosX.Value, _startPosY.Value);
Point[] curvePoints1 = { point1, point2, point3, point4 };
g.FillPolygon(bodyBrush, curvePoints1);
g.DrawPolygon(pen, curvePoints1);
point1 = new Point(_startPosX.Value + 120, _startPosY.Value + 20);
point2 = new Point(_startPosX.Value + 140, _startPosY.Value + 30);
point3 = new Point(_startPosX.Value + 120, _startPosY.Value + 40);
point4 = new Point(_startPosX.Value + 120, _startPosY.Value + 20);
Point[] curvePoints2 = { point1, point2, point3, point4 };
g.FillPolygon(bodyBrush, curvePoints2);
g.DrawPolygon(pen, curvePoints2);
g.FillEllipse(brush, _startPosX.Value, _startPosY.Value + 17, 15, 6);
g.FillEllipse(brush, _startPosX.Value + 35, _startPosY.Value + 27, 50, 6);
g.DrawLine(pen, _startPosX.Value + 120, _startPosY.Value + 30, _startPosX.Value + 140, _startPosY.Value + 30);
g.DrawLine(pen, _startPosX.Value + 120, _startPosY.Value + 30, _startPosX.Value + 140, _startPosY.Value + 30);
pen.Width = 2;
g.DrawLine(pen, _startPosX.Value + 35, _startPosY.Value + 40, _startPosX.Value + 35, _startPosY.Value + 44);
g.DrawLine(pen, _startPosX.Value + 100, _startPosY.Value + 40, _startPosX.Value + 100, _startPosY.Value + 44);
g.DrawRectangle(pen, _startPosX.Value + 30, _startPosY.Value + 43, 3, 3);
g.DrawRectangle(pen, _startPosX.Value + 36, _startPosY.Value + 43, 3, 3);
g.DrawRectangle(pen, _startPosX.Value + 99, _startPosY.Value + 43, 3, 3);
//Дополнительные двигатели
if (EntityAirbus.Engine)
{
Brush engineBrush = new
SolidBrush(EntityAirbus.AdditionalColor);
g.FillEllipse(additionalBrush, _startPosX.Value + 50, _startPosY.Value + 32, 20, 6);
}
//Дополнительный отсек для пассажиров
if (EntityAirbus.Compartment)
{
Brush engineBrush = new
SolidBrush(EntityAirbus.AdditionalColor);
point1 = new Point(_startPosX.Value + 90, _startPosY.Value + 10);
point2 = new Point(_startPosX.Value + 110, _startPosY.Value + 10);
point3 = new Point(_startPosX.Value + 120, _startPosY.Value + 20);
point4 = new Point(_startPosX.Value + 80, _startPosY.Value + 20);
Point[] curvePoints3 = { point1, point2, point3, point4, point1 };
pen.Width = 1;
g.FillPolygon(additionalBrush, curvePoints3);
g.DrawPolygon(pen, curvePoints3);
}
Windows.DrawWindows(g, _startPosX, _startPosY, additionalBrush, pen);
//
if (EntityAirbus.NumWindows == 10)
{
for (int i = 0; i < 10; i++)
{
DrawningWindows.Draw(_startPosX + i * 6, _startPosY, EntityAirbus.AdditionalColor, g);
}
}
if (EntityAirbus.NumWindows == 20)
{
for (int i = 0; i < 20; i++)
{
DrawningWindows.Draw(_startPosX + i * 6, _startPosY, EntityAirbus.AdditionalColor, g);
}
}
if (EntityAirbus.NumWindows == 30)
{
for (int i = 0; i < 30; i++)
{
if (i < 20)
{
DrawningWindows.Draw(_startPosX + i * 6, _startPosY, EntityAirbus.AdditionalColor, g);
}
else DrawningWindows.Draw(_startPosX + 60 + (i - 20) * 6, _startPosY + 10, EntityAirbus.AdditionalColor, g);
}
}
}
}
}

View File

@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectAirbus;
public class DrawningWindows
{
private NumWindows numWindows;
public int SomeProperty
{
set
{
switch (value)
{
case 10:
numWindows = NumWindows.TenWindows;
break;
case 20:
numWindows = NumWindows.TwentyWindows;
break;
case 30:
numWindows = NumWindows.ThirtyWindows;
break;
default:
numWindows = NumWindows.TenWindows;
break;
}
}
}
public void DrawWindows(Graphics g, int? _startPosX, int? _startPosY, Brush additionalBrush, Pen pen)
{
Brush brGreen = new SolidBrush(Color.Red);
switch (numWindows)
{
case NumWindows.TenWindows:
g.DrawEllipse(pen, _startPosX.Value + 1, _startPosY.Value + 23, 4, 4);
break;
case NumWindows.TwentyWindows:
g.DrawEllipse(pen, _startPosX.Value + 1, _startPosY.Value + 23, 4, 4);
break;
case NumWindows.ThirtyWindows:
g.DrawEllipse(pen, _startPosX.Value + 1, _startPosY.Value + 23, 4, 4);
break;
}
}
}

View File

@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectAirbus;
public class EntityAirbus
{
public int Speed { get; set; }
public double Weight { get; set; }
public Color BodyColor { get; private set; }
public Color AdditionalColor { get; private set; }
public bool Compartment { get; private set; }
public bool Engine { get; private set; }
public double Step => Speed * 100 / Weight;
public void Init(int speed, double weight, Color bodyColor, Color
additionalColor, bool compartment, bool engine)
{
Speed = speed;
Weight = weight;
BodyColor = bodyColor;
AdditionalColor = additionalColor;
Compartment = compartment;
Engine = engine;
}
}

View File

@ -1,39 +0,0 @@
namespace ProjectAirbus
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
}
#endregion
}
}

View File

@ -1,10 +0,0 @@
namespace ProjectAirbus
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,153 @@
namespace ProjectAirbus
{
partial class FormAirbus
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
pictureAirbus = new PictureBox();
buttonCreate = new Button();
buttonLeft = new Button();
buttonRight = new Button();
buttonUp = new Button();
buttonDown = new Button();
numericUpDownWindows = new NumericUpDown();
((System.ComponentModel.ISupportInitialize)pictureAirbus).BeginInit();
((System.ComponentModel.ISupportInitialize)numericUpDownWindows).BeginInit();
SuspendLayout();
//
// pictureAirbus
//
pictureAirbus.Dock = DockStyle.Fill;
pictureAirbus.Location = new Point(0, 0);
pictureAirbus.Margin = new Padding(3, 2, 3, 2);
pictureAirbus.Name = "pictureAirbus";
pictureAirbus.Size = new Size(700, 338);
pictureAirbus.TabIndex = 0;
pictureAirbus.TabStop = false;
//
// buttonCreate
//
buttonCreate.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreate.Location = new Point(10, 307);
buttonCreate.Margin = new Padding(3, 2, 3, 2);
buttonCreate.Name = "buttonCreate";
buttonCreate.Size = new Size(82, 22);
buttonCreate.TabIndex = 1;
buttonCreate.Text = "Создать";
buttonCreate.UseVisualStyleBackColor = true;
buttonCreate.Click += buttonCreate_Click;
//
// buttonLeft
//
buttonLeft.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonLeft.BackgroundImage = Properties.Resources.arrowLeft;
buttonLeft.BackgroundImageLayout = ImageLayout.Stretch;
buttonLeft.Location = new Point(579, 302);
buttonLeft.Margin = new Padding(3, 2, 3, 2);
buttonLeft.Name = "buttonLeft";
buttonLeft.Size = new Size(31, 26);
buttonLeft.TabIndex = 2;
buttonLeft.UseVisualStyleBackColor = true;
buttonLeft.Click += buttonMove_Click;
//
// buttonRight
//
buttonRight.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonRight.BackgroundImage = Properties.Resources.arrowRight;
buttonRight.BackgroundImageLayout = ImageLayout.Stretch;
buttonRight.Location = new Point(651, 302);
buttonRight.Margin = new Padding(3, 2, 3, 2);
buttonRight.Name = "buttonRight";
buttonRight.Size = new Size(31, 26);
buttonRight.TabIndex = 3;
buttonRight.UseVisualStyleBackColor = true;
buttonRight.Click += buttonMove_Click;
//
// buttonUp
//
buttonUp.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonUp.BackgroundImage = Properties.Resources.arrowUp;
buttonUp.BackgroundImageLayout = ImageLayout.Stretch;
buttonUp.Location = new Point(615, 272);
buttonUp.Margin = new Padding(3, 2, 3, 2);
buttonUp.Name = "buttonUp";
buttonUp.Size = new Size(31, 26);
buttonUp.TabIndex = 4;
buttonUp.UseVisualStyleBackColor = true;
buttonUp.Click += buttonMove_Click;
//
// buttonDown
//
buttonDown.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonDown.BackgroundImage = Properties.Resources.arrowDown;
buttonDown.BackgroundImageLayout = ImageLayout.Stretch;
buttonDown.Location = new Point(615, 302);
buttonDown.Margin = new Padding(3, 2, 3, 2);
buttonDown.Name = "buttonDown";
buttonDown.Size = new Size(31, 26);
buttonDown.TabIndex = 5;
buttonDown.UseVisualStyleBackColor = true;
buttonDown.Click += buttonMove_Click;
//
// numericUpDownWindows
//
numericUpDownWindows.Location = new Point(98, 307);
numericUpDownWindows.Name = "numericUpDownWindows";
numericUpDownWindows.Size = new Size(120, 23);
numericUpDownWindows.TabIndex = 6;
//
// FormAirbus
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(700, 338);
Controls.Add(numericUpDownWindows);
Controls.Add(buttonDown);
Controls.Add(buttonUp);
Controls.Add(buttonRight);
Controls.Add(buttonLeft);
Controls.Add(buttonCreate);
Controls.Add(pictureAirbus);
Margin = new Padding(3, 2, 3, 2);
Name = "FormAirbus";
Text = "Аэробус";
((System.ComponentModel.ISupportInitialize)pictureAirbus).EndInit();
((System.ComponentModel.ISupportInitialize)numericUpDownWindows).EndInit();
ResumeLayout(false);
}
#endregion
private PictureBox pictureAirbus;
private Button buttonCreate;
private Button buttonLeft;
private Button buttonRight;
private Button buttonUp;
private Button buttonDown;
private NumericUpDown numericUpDownWindows;
}
}

View File

@ -0,0 +1,77 @@
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 ProjectAirbus
{
public partial class FormAirbus : Form
{
private DrawningAirbus? _drawningAirbus;
public FormAirbus()
{
InitializeComponent();
}
private void buttonCreate_Click(object sender, EventArgs e)
{
Random random = new();
_drawningAirbus = new DrawningAirbus();
_drawningAirbus.Init(random.Next(100, 300), random.Next(1000, 3000),
Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256)),
Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)));
_drawningAirbus.SetPictureSize(pictureAirbus.Width, pictureAirbus.Height);
_drawningAirbus.SetPosition(random.Next(10, 100), random.Next(10, 100));
_drawningAirbus.Windows.SomeProperty = (int)numericUpDownWindows.Value;
Bitmap bmp = new(pictureAirbus.Width, pictureAirbus.Height);
Graphics gr = Graphics.FromImage(bmp);
_drawningAirbus.DrawTransport(gr);
pictureAirbus.Image = bmp;
}
private void buttonMove_Click(object sender, EventArgs e)
{
if (_drawningAirbus == null)
{
return;
}
string name = ((Button)sender)?.Name ?? string.Empty;
switch (name)
{
case "buttonUp":
_drawningAirbus.MoveTransport(DirectionType.Up);
break;
case "buttonDown":
_drawningAirbus.MoveTransport(DirectionType.Down);
break;
case "buttonLeft":
_drawningAirbus.MoveTransport(DirectionType.Left);
break;
case "buttonRight":
_drawningAirbus.MoveTransport(DirectionType.Right);
break;
}
Draw();
}
private void Draw()
{
if (_drawningAirbus == null)
{
return;
}
Bitmap bmp = new(pictureAirbus.Width,
pictureAirbus.Height);
Graphics gr = Graphics.FromImage(bmp);
_drawningAirbus.DrawTransport(gr);
pictureAirbus.Image = bmp;
}
}
}

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectAirbus;
public enum NumWindows
{
TenWindows,
TwentyWindows,
ThirtyWindows,
}

View File

@ -11,7 +11,7 @@ namespace ProjectAirbus
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
Application.Run(new FormAirbus());
}
}
}

View File

@ -8,4 +8,19 @@
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>

View File

@ -0,0 +1,103 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ProjectAirbus.Properties {
using System;
/// <summary>
/// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д.
/// </summary>
// Этот класс создан автоматически классом StronglyTypedResourceBuilder
// с помощью такого средства, как ResGen или Visual Studio.
// Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen
// с параметром /str или перестройте свой проект VS.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.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 (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ProjectAirbus.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;
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap arrowDown {
get {
object obj = ResourceManager.GetObject("arrowDown", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap arrowLeft {
get {
object obj = ResourceManager.GetObject("arrowLeft", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap arrowRight {
get {
object obj = ResourceManager.GetObject("arrowRight", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Поиск локализованного ресурса типа System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap arrowUp {
get {
object obj = ResourceManager.GetObject("arrowUp", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}

View File

@ -0,0 +1,133 @@
<?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>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="arrowDown" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\arrowDown.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="arrowUp" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\arrowUp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="arrowLeft" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\arrowLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="arrowRight" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\arrowRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB