This commit is contained in:
Alexander
2022-11-30 13:36:29 +03:00
parent 5872049cc7
commit f0acfce2f3
24 changed files with 570 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
namespace demo;
partial class CountValueTest
sealed partial class CountValueTest
{
/// <summary>
/// Required designer variable.

View File

@@ -1,8 +1,8 @@
using anbs_cp;
using anbs_cp.Classes;
namespace demo;
public partial class CountValueTest: Form
public sealed partial class CountValueTest: Form
{
public CountValueTest ()
{

View File

@@ -1,14 +1,4 @@
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 demo;
namespace demo;
public sealed partial class MainMenu: Form
{
public MainMenu ()

View File

@@ -88,7 +88,7 @@ sealed partial class SampleMapperTest
// ResultArea
//
this.ResultArea.Dock = System.Windows.Forms.DockStyle.Right;
this.ResultArea.Location = new System.Drawing.Point(811, 0);
this.ResultArea.Location = new System.Drawing.Point(819, 0);
this.ResultArea.Multiline = true;
this.ResultArea.Name = "ResultArea";
this.ResultArea.ReadOnly = true;
@@ -150,7 +150,7 @@ sealed partial class SampleMapperTest
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1143, 378);
this.ClientSize = new System.Drawing.Size(1151, 378);
this.Controls.Add(this.MapModeLabel);
this.Controls.Add(this.MapModeEdit);
this.Controls.Add(this.DemoDateTimeLabel);

View File

@@ -1,5 +1,4 @@
using anbs_cp;
using anbs_cp.Classes;
using Newtonsoft.Json;
namespace demo;

View File

@@ -57,9 +57,4 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="SampleMapperTest_MapBtn_Click_" xml:space="preserve">
<value>Demo2 Class before map:
{0}
and after:{1}</value>
</data>
</root>

View File

@@ -2,13 +2,12 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Configurations>Release;Debug.CNF</Configurations>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<StartupObject></StartupObject>
<StartupObject>demo.Program</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
@@ -20,7 +19,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>