This commit is contained in:
Dmitrii.PIbd-14 2024-02-13 09:26:40 +04:00
parent 6dbac30d09
commit ec8a14a571
6 changed files with 42 additions and 48 deletions

View File

@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34525.116
VisualStudioVersion = 17.7.34202.233
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ElectricLocomotive", "ElectricLocomotive\ElectricLocomotive.csproj", "{4D945FCE-9358-42F9-AE60-159256B4D9CA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarmlyShip", "WarmlyShip\WarmlyShip.csproj", "{047EF427-F9BD-405D-BA87-4E38BE807DDD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -11,15 +11,15 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Release|Any CPU.Build.0 = Release|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {09FB2C10-894B-4529-BBD2-BFF03BE4AC73}
SolutionGuid = {C28B3C24-258E-4039-8296-57E5AB49F00A}
EndGlobalSection
EndGlobal

View File

@ -1,4 +1,4 @@
namespace ElectricLocomotive
namespace WarmlyShip
{
partial class Form1
{
@ -28,18 +28,12 @@
/// </summary>
private void InitializeComponent()
{
SuspendLayout();
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(793, 480);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
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,4 +1,4 @@
namespace ElectricLocomotive
namespace WarmlyShip
{
public partial class Form1 : Form
{
@ -7,4 +7,4 @@ namespace ElectricLocomotive
InitializeComponent();
}
}
}
}

View File

@ -1,17 +1,17 @@
<?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
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>
@ -26,36 +26,36 @@
<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
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
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
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
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
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
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
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->

View File

@ -1,4 +1,4 @@
namespace ElectricLocomotive
namespace WarmlyShip
{
internal static class Program
{

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>