diff --git a/AsmrManage/AsmrManage.sln b/AsmrManage/AsmrManage.sln new file mode 100644 index 0000000..00f4d21 --- /dev/null +++ b/AsmrManage/AsmrManage.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34031.279 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsmrManage", "AsmrManage\AsmrManage.csproj", "{7D569CE3-1810-4036-B166-2723176A65F0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7D569CE3-1810-4036-B166-2723176A65F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7D569CE3-1810-4036-B166-2723176A65F0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7D569CE3-1810-4036-B166-2723176A65F0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7D569CE3-1810-4036-B166-2723176A65F0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CAC2E582-7CF7-4ED7-B1CC-99F39EC8215C} + EndGlobalSection +EndGlobal diff --git a/AsmrManage/AsmrManage/AsmrManage.csproj b/AsmrManage/AsmrManage/AsmrManage.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/AsmrManage/AsmrManage/AsmrManage.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/AsmrManage/AsmrManage/Form1.Designer.cs b/AsmrManage/AsmrManage/Form1.Designer.cs new file mode 100644 index 0000000..249102e --- /dev/null +++ b/AsmrManage/AsmrManage/Form1.Designer.cs @@ -0,0 +1,124 @@ +namespace AsmrManage +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + tabControl1 = new TabControl(); + tabPage1 = new TabPage(); + tabPage2 = new TabPage(); + tabPage3 = new TabPage(); + tabPage4 = new TabPage(); + tabPage5 = new TabPage(); + tabControl1.SuspendLayout(); + SuspendLayout(); + // + // tabControl1 + // + tabControl1.Controls.Add(tabPage1); + tabControl1.Controls.Add(tabPage2); + tabControl1.Controls.Add(tabPage3); + tabControl1.Controls.Add(tabPage4); + tabControl1.Controls.Add(tabPage5); + tabControl1.Location = new Point(12, 12); + tabControl1.Name = "tabControl1"; + tabControl1.SelectedIndex = 0; + tabControl1.Size = new Size(776, 426); + tabControl1.TabIndex = 0; + // + // tabPage1 + // + tabPage1.Location = new Point(4, 24); + tabPage1.Name = "tabPage1"; + tabPage1.Padding = new Padding(3); + tabPage1.Size = new Size(768, 398); + tabPage1.TabIndex = 0; + tabPage1.Text = "查询&修改"; + tabPage1.UseVisualStyleBackColor = true; + // + // tabPage2 + // + tabPage2.Location = new Point(4, 24); + tabPage2.Name = "tabPage2"; + tabPage2.Padding = new Padding(3); + tabPage2.Size = new Size(768, 398); + tabPage2.TabIndex = 1; + tabPage2.Text = "DB数据库转换"; + tabPage2.UseVisualStyleBackColor = true; + // + // tabPage3 + // + tabPage3.Location = new Point(4, 24); + tabPage3.Name = "tabPage3"; + tabPage3.Padding = new Padding(3); + tabPage3.Size = new Size(768, 398); + tabPage3.TabIndex = 2; + tabPage3.Text = "数据核验"; + tabPage3.UseVisualStyleBackColor = true; + // + // tabPage4 + // + tabPage4.Location = new Point(4, 24); + tabPage4.Name = "tabPage4"; + tabPage4.Padding = new Padding(3); + tabPage4.Size = new Size(768, 398); + tabPage4.TabIndex = 3; + tabPage4.Text = "高级功能"; + tabPage4.UseVisualStyleBackColor = true; + // + // tabPage5 + // + tabPage5.Location = new Point(4, 24); + tabPage5.Name = "tabPage5"; + tabPage5.Padding = new Padding(3); + tabPage5.Size = new Size(768, 398); + tabPage5.TabIndex = 4; + tabPage5.Text = "关于"; + tabPage5.UseVisualStyleBackColor = true; + // + // Form1 + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Controls.Add(tabControl1); + Name = "Form1"; + Text = "AsmrManage"; + tabControl1.ResumeLayout(false); + ResumeLayout(false); + } + + #endregion + + private TabControl tabControl1; + private TabPage tabPage1; + private TabPage tabPage2; + private TabPage tabPage3; + private TabPage tabPage4; + private TabPage tabPage5; + } +} \ No newline at end of file diff --git a/AsmrManage/AsmrManage/Form1.cs b/AsmrManage/AsmrManage/Form1.cs new file mode 100644 index 0000000..1b791ec --- /dev/null +++ b/AsmrManage/AsmrManage/Form1.cs @@ -0,0 +1,10 @@ +namespace AsmrManage +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/AsmrManage/AsmrManage/Form1.resx b/AsmrManage/AsmrManage/Form1.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/AsmrManage/AsmrManage/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/AsmrManage/AsmrManage/Program.cs b/AsmrManage/AsmrManage/Program.cs new file mode 100644 index 0000000..67b50ba --- /dev/null +++ b/AsmrManage/AsmrManage/Program.cs @@ -0,0 +1,17 @@ +namespace AsmrManage +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file