diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/Dblint.sql" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/Dblint.sql" new file mode 100644 index 0000000000000000000000000000000000000000..c04f7eeca66331ef13c0d3c956f2accd1a651a01 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/Dblint.sql" @@ -0,0 +1,46 @@ +---建库 +USE master +GO +IF EXISTS (SELECT * FROM SysDataBases WHERE NAME ='schools') +DROP DATABASE schools +GO +CREATE DATABASE schools +ON PRIMARY +( NAME='schools', + FILENAME='D:\myExamtest\Schools.mdf', + SIZE=5MB, + FILEGROWTH=1MB ) +LOG ON +( NAME='QQ_log', + FILENAME='D:\myExamtest\Schools_log.ldf', + SIZE=5MB, + FILEGROWTH=10%) +GO + +---创建学生表 +IF EXISTS(SELECT * FROM SYSOBJECTS WHERE NAME='Students') +DROP TABLE Students +GO +CREATE TABLE Students +( Id INT IDENTITY(1,1) PRIMARY KEY, + Name NVARCHAR(10) NOT NULL, + Age INT NOT NULL, + Score INT CHECK(Score between 0 and 750)NOT NULL, +) + insert into Students(Name,Age ,Score) values('刘伊心',20,500) + insert into Students(Name,Age ,Score) values('李欣',21,343) + insert into Students(Name,Age ,Score) values('周琳',21,472) + insert into Students(Name,Age ,Score) values('张墨',24,385) + insert into Students(Name,Age ,Score) values('李妍',23,298) + insert into Students(Name,Age ,Score) values('刘芳',22,634) + insert into Students(Name,Age ,Score) values('邹彦凯',24,035) + insert into Students(Name,Age ,Score) values('童子怡',21,426) + insert into Students(Name,Age ,Score) values('张静梅',23,265) + insert into Students(Name,Age ,Score) values('黄小萌',25,456) + insert into Students(Name,Age ,Score) values('方方',23,314) + insert into Students(Name,Age ,Score) values('无轩',22,700) + + select * from Students +GO + + diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2.sln" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2.sln" new file mode 100644 index 0000000000000000000000000000000000000000..bc376f8f470a319f7196ca2cac997704a473b07f --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2.sln" @@ -0,0 +1,25 @@ +锘 +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30225.117 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApp2", "WindowsFormsApp2\WindowsFormsApp2.csproj", "{07BC4B6F-7826-4720-8A6C-50FEB2844326}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {07BC4B6F-7826-4720-8A6C-50FEB2844326}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {07BC4B6F-7826-4720-8A6C-50FEB2844326}.Debug|Any CPU.Build.0 = Debug|Any CPU + {07BC4B6F-7826-4720-8A6C-50FEB2844326}.Release|Any CPU.ActiveCfg = Release|Any CPU + {07BC4B6F-7826-4720-8A6C-50FEB2844326}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5FCE2D56-F4A9-456B-8A4E-22BAC1770C56} + EndGlobalSection +EndGlobal diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/App.config" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/App.config" new file mode 100644 index 0000000000000000000000000000000000000000..56efbc7b5f15b5166cc89dae0406895b57de0b67 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/App.config" @@ -0,0 +1,6 @@ +锘 + + + + + \ No newline at end of file diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Dbhelper.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Dbhelper.cs" new file mode 100644 index 0000000000000000000000000000000000000000..10215578e9984ca648a43179adbb17b9e58d16b6 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Dbhelper.cs" @@ -0,0 +1,34 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WindowsFormsApp2 +{ + public class Dbhelper + { + + public static DataTable GetdataTable(string sql) + { string conString = "server =. ; uid =sa ;pwd =123456 ; database =Schools"; + string sqlstring = "select * from Students"; + + SqlConnection Connection = new SqlConnection(conString); + + SqlDataAdapter Adapter = new SqlDataAdapter(sqlstring , Connection); + + Connection.Open(); + DataTable dt = new DataTable(); + Adapter.Fill(dt); + return dt; + } + public static int AddOrEditSave(string sql) + { + SqlConnection sqlConnection = new SqlConnection(conString); + SqlCommand sqlCommand = new SqlCommand(sql, sqlConnection); + sqlConnection.Open(); + return sqlCommand.ExecuteNonQuery(); + } +} diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.Designer.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.Designer.cs" new file mode 100644 index 0000000000000000000000000000000000000000..925beee8f0d87d4b91dab08ff316e045dc1895e4 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.Designer.cs" @@ -0,0 +1,139 @@ +锘縩amespace WindowsFormsApp2 +{ + partial class Form1 + { + /// + /// 蹇呴渶鐨勮璁″櫒鍙橀噺銆 + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 娓呯悊鎵鏈夋鍦ㄤ娇鐢ㄧ殑璧勬簮銆 + /// + /// 濡傛灉搴旈噴鏀炬墭绠¤祫婧愶紝涓 true锛涘惁鍒欎负 false銆 + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows 绐椾綋璁捐鍣ㄧ敓鎴愮殑浠g爜 + + /// + /// 璁捐鍣ㄦ敮鎸佹墍闇鐨勬柟娉 - 涓嶈淇敼 + /// 浣跨敤浠g爜缂栬緫鍣ㄤ慨鏀规鏂规硶鐨勫唴瀹广 + /// + private void InitializeComponent() + { + this.dataGridView1 = new System.Windows.Forms.DataGridView(); + this.label1 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); + this.button3 = new System.Windows.Forms.Button(); + this.button4 = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); + this.SuspendLayout(); + // + // dataGridView1 + // + this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView1.Location = new System.Drawing.Point(105, 135); + this.dataGridView1.Name = "dataGridView1"; + this.dataGridView1.RowHeadersWidth = 51; + this.dataGridView1.RowTemplate.Height = 27; + this.dataGridView1.Size = new System.Drawing.Size(528, 150); + this.dataGridView1.TabIndex = 0; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(105, 51); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(37, 15); + this.label1.TabIndex = 1; + this.label1.Text = "鍚嶅瓧"; + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(148, 49); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(100, 25); + this.textBox1.TabIndex = 2; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(277, 51); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 3; + this.button1.Text = "鏌ユ壘"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // button2 + // + this.button2.Location = new System.Drawing.Point(367, 53); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(75, 23); + this.button2.TabIndex = 4; + this.button2.Text = "娣诲姞"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // button3 + // + this.button3.Location = new System.Drawing.Point(469, 51); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(75, 23); + this.button3.TabIndex = 5; + this.button3.Text = "鏇存柊"; + this.button3.UseVisualStyleBackColor = true; + this.button3.Click += new System.EventHandler(this.button3_Click); + // + // button4 + // + this.button4.Location = new System.Drawing.Point(595, 52); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(75, 23); + this.button4.TabIndex = 6; + this.button4.Text = "鍒犻櫎"; + this.button4.UseVisualStyleBackColor = true; + this.button4.Click += new System.EventHandler(this.button4_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.button4); + this.Controls.Add(this.button3); + this.Controls.Add(this.button2); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.label1); + this.Controls.Add(this.dataGridView1); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.DataGridView dataGridView1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Button button4; + } +} + diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.cs" new file mode 100644 index 0000000000000000000000000000000000000000..8d45de68f3e06a1703c6b2fb4fb366385cd0d5ff --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.cs" @@ -0,0 +1,56 @@ +锘縰sing 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 WindowsFormsApp2 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + var abc = "select * from Students"; + + var dt = Dbhelper.GetdataTable(abc); + + dataGridView1.DataSource = dt; + } + + private void button1_Click(object sender, EventArgs e) + {//鏌ヨ + + + var query = textBox1.Text; + var sqlquery = string.Format("select * from Students where Name like'%{0}%'", query); + var sdf = DbHelper.GetdataTable(sqlquery); + dataGridView1.DataSource = sdf; + + + } + + private void button2_Click(object sender, EventArgs e) + { + + } + + private void button3_Click(object sender, EventArgs e) + { + + } + + private void button4_Click(object sender, EventArgs e) + { + + } + } +} diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.resx" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Form1.resx" new file mode 100644 index 0000000000000000000000000000000000000000..1af7de150c99c12dd67a509fe57c10d63e4eeb04 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/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/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Program.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Program.cs" new file mode 100644 index 0000000000000000000000000000000000000000..90fd659f4ad9130a47673963db5530c12da06fa8 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Program.cs" @@ -0,0 +1,22 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApp2 +{ + static class Program + { + /// + /// 搴旂敤绋嬪簭鐨勪富鍏ュ彛鐐广 + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/AssemblyInfo.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/AssemblyInfo.cs" new file mode 100644 index 0000000000000000000000000000000000000000..0948fe68d3c09a34adba0a798d92da2642cc96e7 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/AssemblyInfo.cs" @@ -0,0 +1,36 @@ +锘縰sing System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 鏈夊叧绋嬪簭闆嗙殑涓鑸俊鎭敱浠ヤ笅 +// 鎺у埗銆傛洿鏀硅繖浜涚壒鎬у煎彲淇敼 +// 涓庣▼搴忛泦鍏宠仈鐨勪俊鎭 +[assembly: AssemblyTitle("WindowsFormsApp2")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WindowsFormsApp2")] +[assembly: AssemblyCopyright("Copyright 漏 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// 灏 ComVisible 璁剧疆涓 false 浼氫娇姝ょ▼搴忛泦涓殑绫诲瀷 +//瀵 COM 缁勪欢涓嶅彲瑙併傚鏋滈渶瑕佷粠 COM 璁块棶姝ょ▼搴忛泦涓殑绫诲瀷 +//璇峰皢姝ょ被鍨嬬殑 ComVisible 鐗规ц缃负 true銆 +[assembly: ComVisible(false)] + +// 濡傛灉姝ら」鐩悜 COM 鍏紑锛屽垯涓嬪垪 GUID 鐢ㄤ簬绫诲瀷搴撶殑 ID +[assembly: Guid("07bc4b6f-7826-4720-8a6c-50feb2844326")] + +// 绋嬪簭闆嗙殑鐗堟湰淇℃伅鐢变笅鍒楀洓涓肩粍鎴: +// +// 涓荤増鏈 +// 娆$増鏈 +// 鐢熸垚鍙 +// 淇鍙 +// +//鍙互鎸囧畾鎵鏈夎繖浜涘硷紝涔熷彲浠ヤ娇鐢ㄢ滅敓鎴愬彿鈥濆拰鈥滀慨璁㈠彿鈥濈殑榛樿鍊 +//閫氳繃浣跨敤 "*"锛屽涓嬫墍绀: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Resources.Designer.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Resources.Designer.cs" new file mode 100644 index 0000000000000000000000000000000000000000..55c59fd2743d765d4c0828fe1b0baa5dac190cc0 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Resources.Designer.cs" @@ -0,0 +1,71 @@ +锘//------------------------------------------------------------------------------ +// +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// 杩愯鏃剁増鏈: 4.0.30319.42000 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳藉鑷翠笉姝g‘鐨勮涓猴紝濡傛灉 +// 閲嶆柊鐢熸垚浠g爜锛屽垯鎵鍋氭洿鏀瑰皢涓㈠け銆 +// +//------------------------------------------------------------------------------ + +namespace WindowsFormsApp2.Properties +{ + + + /// + /// 寮虹被鍨嬭祫婧愮被锛岀敤浜庢煡鎵炬湰鍦板寲瀛楃涓茬瓑銆 + /// + // 姝ょ被鏄敱 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() + { + } + + /// + /// 杩斿洖姝ょ被浣跨敤鐨勭紦瀛 ResourceManager 瀹炰緥銆 + /// + [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("WindowsFormsApp2.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 瑕嗙洊褰撳墠绾跨▼鐨 CurrentUICulture 灞炴 + /// 浣跨敤姝ゅ己绫诲瀷鐨勮祫婧愮被鐨勮祫婧愭煡鎵俱 + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Resources.resx" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Resources.resx" new file mode 100644 index 0000000000000000000000000000000000000000..af7dbebbacef595e3089c01c05671016c21a8304 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Resources.resx" @@ -0,0 +1,117 @@ +锘 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Settings.Designer.cs" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Settings.Designer.cs" new file mode 100644 index 0000000000000000000000000000000000000000..559507fed6ca69716cfe65c56e5279b93fb9b854 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Settings.Designer.cs" @@ -0,0 +1,30 @@ +锘//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace WindowsFormsApp2.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; + } + } + } +} diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Settings.settings" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Settings.settings" new file mode 100644 index 0000000000000000000000000000000000000000..39645652af62950ebf3b28ec3a5400dcec30b1c4 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/Properties/Settings.settings" @@ -0,0 +1,7 @@ +锘 + + + + + + diff --git "a/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/WindowsFormsApp2.csproj" "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/WindowsFormsApp2.csproj" new file mode 100644 index 0000000000000000000000000000000000000000..ecb02a57909f1105fad3739f19b26ecb68724ff9 --- /dev/null +++ "b/\351\273\204\347\201\277\345\246\256/WindowsFormsApp2/WindowsFormsApp2/WindowsFormsApp2.csproj" @@ -0,0 +1,84 @@ +锘 + + + + Debug + AnyCPU + {07BC4B6F-7826-4720-8A6C-50FEB2844326} + WinExe + WindowsFormsApp2 + WindowsFormsApp2 + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file