实例介绍
【实例简介】从《学通C#的24堂课》随书光盘中拷贝出的源码,详见其中“光盘使用说明”。
文件清单
├── 01
│ ├── qjyy
│ │ ├── 01
│ │ │ └── SetStartForm
│ │ │ ├── SetStartForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SetStartForm.csproj
│ │ │ ├── SetStartForm.sln
│ │ │ └── SetStartForm.suo
│ │ ├── 01_diy
│ │ │ └── StartTwoWindows
│ │ │ ├── StartTwoWindows
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StartTwoWindows.csproj
│ │ │ ├── StartTwoWindows.sln
│ │ │ └── StartTwoWindows.suo
│ │ ├── 02
│ │ │ └── SetSoftInfo
│ │ │ ├── SetSoftInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SetSoftInfo.csproj
│ │ │ ├── SetSoftInfo.sln
│ │ │ └── SetSoftInfo.suo
│ │ ├── 02_diy
│ │ │ └── SetVersionAndCompany
│ │ │ ├── SetVersionAndCompany
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SetVersionAndCompany.csproj
│ │ │ ├── SetVersionAndCompany.sln
│ │ │ └── SetVersionAndCompany.suo
│ │ ├── 03
│ │ │ └── AddForm
│ │ │ ├── AddForm
│ │ │ │ ├── AddForm.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── frmLogin.cs
│ │ │ │ ├── frmLogin.designer.cs
│ │ │ │ ├── frmLogin.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddForm.sln
│ │ │ └── AddForm.suo
│ │ ├── 03_diy
│ │ │ ├── AboutFormA
│ │ │ │ ├── AboutFormA
│ │ │ │ │ ├── AboutFormA.csproj
│ │ │ │ │ ├── FormA.cs
│ │ │ │ │ ├── FormA.Designer.cs
│ │ │ │ │ ├── FormA.resx
│ │ │ │ │ ├── FormB.cs
│ │ │ │ │ ├── FormB.Designer.cs
│ │ │ │ │ ├── FormB.resx
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ └── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── AboutFormA.sln
│ │ │ │ └── AboutFormA.suo
│ │ │ └── AboutFormB
│ │ │ ├── AboutFormB
│ │ │ │ ├── AboutFormB.csproj
│ │ │ │ ├── FormB.cs
│ │ │ │ ├── FormB.Designer.cs
│ │ │ │ ├── FormB.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AboutFormB.sln
│ │ │ └── AboutFormB.suo
│ │ ├── 04
│ │ │ └── MoveFontInForm
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MoveFontInForm.csproj
│ │ │ ├── MoveFontInForm.sln
│ │ │ ├── MoveFontInForm.suo
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ └── 05.jpg
│ │ ├── 04_diy
│ │ │ └── LocomotorTextBox
│ │ │ ├── LocomotorTextBox
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LocomotorTextBox.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LocomotorTextBox.sln
│ │ │ └── LocomotorTextBox.suo
│ │ ├── 05
│ │ │ └── AddCalculator
│ │ │ ├── AddCalculator
│ │ │ │ ├── AddCalculator.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddCalculator.sln
│ │ │ └── AddCalculator.suo
│ │ └── 05_diy
│ │ └── Subtracter
│ │ ├── Subtracter
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Subtracter.csproj
│ │ ├── Subtracter.sln
│ │ └── Subtracter.suo
│ └── zmhh
│ ├── 01
│ │ └── RunProgram
│ │ ├── RunProgram
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── RunProgram.csproj
│ │ ├── RunProgram.sln
│ │ └── RunProgram.suo
│ ├── 01_zmhh
│ │ └── RunWindows
│ │ ├── RunWindows
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RunWindows.csproj
│ │ ├── RunWindows.sln
│ │ └── RunWindows.suo
│ ├── 02
│ │ └── StopProgram
│ │ ├── StopProgram
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── StopProgram.csproj
│ │ ├── StopProgram.sln
│ │ └── StopProgram.suo
│ ├── 02_zmhh
│ │ └── StopWindows
│ │ ├── StopWindows
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── StopWindows.csproj
│ │ ├── StopWindows.sln
│ │ └── StopWindows.suo
│ ├── 04
│ │ └── SetFont
│ │ ├── SetFont
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetFont.csproj
│ │ ├── SetFont.sln
│ │ └── SetFont.suo
│ ├── 04_zmhh
│ │ └── SetFont
│ │ ├── SetFont
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetFont.csproj
│ │ ├── SetFont.sln
│ │ └── SetFont.suo
│ ├── 05
│ │ └── LayoutForm
│ │ ├── LayoutForm
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── LayoutForm.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LayoutForm.sln
│ │ └── LayoutForm.suo
│ └── 05_zmhh
│ └── SetTextBox
│ ├── SetTextBox
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── SetTextBox.csproj
│ ├── SetTextBox.sln
│ └── SetTextBox.suo
├── 02
│ ├── qjyy
│ │ ├── 01
│ │ │ └── Equal
│ │ │ ├── Equal
│ │ │ │ ├── Equal.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Equal.sln
│ │ │ └── Equal.suo
│ │ ├── 01_diy
│ │ │ └── UseIs
│ │ │ ├── UseIs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseIs.csproj
│ │ │ ├── UseIs.sln
│ │ │ └── UseIs.suo
│ │ ├── 02
│ │ │ └── Calculator
│ │ │ ├── Calculator
│ │ │ │ ├── Calculator.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Calculator.sln
│ │ │ └── Calculator.suo
│ │ ├── 02_diy
│ │ │ └── Calculator
│ │ │ ├── Calculator
│ │ │ │ ├── Calculator.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Calculator.sln
│ │ │ └── Calculator.suo
│ │ ├── 03
│ │ │ └── Encrypt
│ │ │ ├── Encrypt
│ │ │ │ ├── Encrypt.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Encrypt.sln
│ │ │ └── Encrypt.suo
│ │ ├── 03_diy
│ │ │ └── Encrypt
│ │ │ ├── Encrypt
│ │ │ │ ├── Encrypt.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Encrypt.sln
│ │ │ └── Encrypt.suo
│ │ ├── 04
│ │ │ └── GetCode
│ │ │ ├── GetCode
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── GetCode.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetCode.sln
│ │ │ └── GetCode.suo
│ │ ├── 04_diy
│ │ │ └── SkilfulOperator
│ │ │ ├── SkilfulOperator2
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SkilfulOperator2.csproj
│ │ │ ├── SkilfulOperator2.sln
│ │ │ └── SkilfulOperator2.suo
│ │ ├── 05
│ │ │ └── GetYear
│ │ │ ├── GetYear
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetYear.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetYear.sln
│ │ │ └── GetYear.suo
│ │ └── 05_diy
│ │ └── IsEven
│ │ ├── IsEven
│ │ │ ├── IsEven.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── IsEven.sln
│ │ └── IsEven.suo
│ ├── sl
│ │ ├── 2.01
│ │ │ └── Hello_World
│ │ │ ├── Hello_World
│ │ │ │ ├── Hello_World.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Hello_World.sln
│ │ │ └── Hello_World.suo
│ │ ├── 2.02
│ │ │ └── UseNameSpace
│ │ │ ├── UseNameSpace
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseNameSpace.csproj
│ │ │ ├── UseNameSpace.sln
│ │ │ └── UseNameSpace.suo
│ │ ├── 2.03
│ │ │ └── 2.03.txt
│ │ ├── 2.04
│ │ │ └── 2.04.txt
│ │ ├── 2.05
│ │ │ └── 2.05.txt
│ │ ├── 2.06
│ │ │ └── 2.06.txt
│ │ ├── 2.07
│ │ │ └── UseInt
│ │ │ ├── UseInt
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseInt.csproj
│ │ │ ├── UseInt.sln
│ │ │ └── UseInt.suo
│ │ ├── 2.08
│ │ │ └── 2.08.txt
│ │ ├── 2.09
│ │ │ └── 2.09.txt
│ │ ├── 2.10
│ │ │ └── 2.10.txt
│ │ ├── 2.11
│ │ │ └── UseReference
│ │ │ ├── UseReference
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseReference.csproj
│ │ │ ├── UseReference.sln
│ │ │ └── UseReference.suo
│ │ ├── 2.12
│ │ │ └── 2.12.txt
│ │ ├── 2.13
│ │ │ └── 2.13.txt
│ │ ├── 2.14
│ │ │ └── 2.14.txt
│ │ ├── 2.15
│ │ │ └── 2.15.txt
│ │ ├── 2.16
│ │ │ └── VarField
│ │ │ ├── VarField
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── VarField.csproj
│ │ │ ├── VarField.sln
│ │ │ └── VarField.suo
│ │ ├── 2.17
│ │ │ └── 2.17.txt
│ │ ├── 2.18
│ │ │ └── UseConst
│ │ │ ├── UseConst
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseConst.csproj
│ │ │ ├── UseConst.sln
│ │ │ └── UseConst.suo
│ │ ├── 2.19
│ │ │ └── 2.19.txt
│ │ ├── 2.20
│ │ │ └── ShowConvert
│ │ │ ├── ShowConvert
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── ShowConvert.csproj
│ │ │ ├── ShowConvert.sln
│ │ │ └── ShowConvert.suo
│ │ ├── 2.21
│ │ │ └── 2.21.txt
│ │ ├── 2.22
│ │ │ └── UpBox
│ │ │ ├── UpBox
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UpBox.csproj
│ │ │ ├── UpBox.sln
│ │ │ └── UpBox.suo
│ │ ├── 2.23
│ │ │ └── DownBox
│ │ │ ├── DownBox
│ │ │ │ ├── DownBox.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── DownBox.sln
│ │ │ └── DownBox.suo
│ │ ├── 2.24
│ │ │ └── UserAdd
│ │ │ ├── UserAdd
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UserAdd.csproj
│ │ │ ├── UserAdd.sln
│ │ │ └── UserAdd.suo
│ │ ├── 2.25
│ │ │ └── UseSub
│ │ │ ├── UseSub
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseSub.csproj
│ │ │ ├── UseSub.sln
│ │ │ └── UseSub.suo
│ │ ├── 2.26
│ │ │ └── UseMul
│ │ │ ├── UseMul
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseMul.csproj
│ │ │ ├── UseMul.sln
│ │ │ └── UseMul.suo
│ │ ├── 2.27
│ │ │ └── UseDiv
│ │ │ ├── UseDiv
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDiv.csproj
│ │ │ ├── UseDiv.sln
│ │ │ └── UseDiv.suo
│ │ ├── 2.28
│ │ │ └── UseRes
│ │ │ ├── UseRes
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseRes.csproj
│ │ │ ├── UseRes.sln
│ │ │ └── UseRes.suo
│ │ ├── 2.29
│ │ │ └── UseAddEva
│ │ │ ├── UseAddEva
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseAddEva.csproj
│ │ │ ├── UseAddEva.sln
│ │ │ └── UseAddEva.suo
│ │ ├── 2.30
│ │ │ └── UseDD
│ │ │ ├── UseDD
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDD.csproj
│ │ │ ├── UseDD.sln
│ │ │ └── UseDD.suo
│ │ ├── 2.31
│ │ │ └── UseBD
│ │ │ ├── UseBD
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBD.csproj
│ │ │ ├── UseBD.sln
│ │ │ └── UseBD.suo
│ │ ├── 2.32
│ │ │ └── UseXY
│ │ │ ├── UseXY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseXY.csproj
│ │ │ ├── UseXY.sln
│ │ │ └── UseXY.suo
│ │ ├── 2.33
│ │ │ └── UseDY
│ │ │ ├── UseDY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDY.csproj
│ │ │ ├── UseDY.sln
│ │ │ └── UseDY.suo
│ │ ├── 2.34
│ │ │ └── UseXYDY
│ │ │ ├── UseXYDY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseXYDY.csproj
│ │ │ ├── UseXYDY.sln
│ │ │ └── UseXYDY.suo
│ │ ├── 2.35
│ │ │ └── UseDYDY
│ │ │ ├── UseDYDY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDYDY.csproj
│ │ │ ├── UseDYDY.sln
│ │ │ └── UseDYDY.suo
│ │ ├── 2.36
│ │ │ └── UseWY
│ │ │ ├── UseWY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWY.csproj
│ │ │ ├── UseWY.sln
│ │ │ └── UseWY.suo
│ │ ├── 2.37
│ │ │ └── UseWH
│ │ │ ├── UseWH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWH.csproj
│ │ │ ├── UseWH.sln
│ │ │ └── UseWH.suo
│ │ ├── 2.38
│ │ │ └── UseWYH
│ │ │ ├── UseWYH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWYH.csproj
│ │ │ ├── UseWYH.sln
│ │ │ └── UseWYH.suo
│ │ ├── 2.39
│ │ │ └── UseBEY
│ │ │ ├── UseBEY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBEY.csproj
│ │ │ ├── UseBEY.sln
│ │ │ └── UseBEY.suo
│ │ ├── 2.40
│ │ │ └── UseBEH
│ │ │ ├── UseBEH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBEH.csproj
│ │ │ ├── UseBEH.sln
│ │ │ └── UseBEH.suo
│ │ ├── 2.41
│ │ │ └── UseBEYH
│ │ │ ├── UseBEYH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBEYH.csproj
│ │ │ ├── UseBEYH.sln
│ │ │ └── UseBEYH.suo
│ │ ├── 2.42
│ │ │ └── UseZYW
│ │ │ ├── UseZYW
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseZYW.csproj
│ │ │ ├── UseZYW.sln
│ │ │ └── UseZYW.suo
│ │ ├── 2.43
│ │ │ └── UseYYW
│ │ │ ├── UseYYW
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseYYW.csproj
│ │ │ ├── UseYYW.sln
│ │ │ └── UseYYW.suo
│ │ ├── 2.44
│ │ │ └── UseIS
│ │ │ ├── UseIS
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseIS.csproj
│ │ │ ├── UseIS.sln
│ │ │ └── UseIS.suo
│ │ ├── 2.45
│ │ │ └── UseTJ
│ │ │ ├── UseTJ
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseTJ.csproj
│ │ │ ├── UseTJ.sln
│ │ │ └── UseTJ.suo
│ │ ├── 2.46
│ │ │ └── UseNEW
│ │ │ ├── UseNEW
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseNEW.csproj
│ │ │ ├── UseNEW.sln
│ │ │ └── UseNEW.suo
│ │ └── 2.47
│ │ └── UseTypeOf
│ │ ├── UseTypeOf
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseTypeOf.csproj
│ │ ├── UseTypeOf.sln
│ │ └── UseTypeOf.suo
│ └── zmhh
│ ├── 01
│ │ └── Code Commentate
│ │ ├── Code Commentate
│ │ │ ├── Code Commentate.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Code Commentate.sln
│ │ └── Code Commentate.suo
│ ├── 01_zmhh
│ │ └── WindowsCommentate
│ │ ├── WindowsCommentate
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WindowsCommentate.csproj
│ │ ├── WindowsCommentate.sln
│ │ └── WindowsCommentate.suo
│ ├── 02
│ │ └── GetString
│ │ ├── GetString
│ │ │ ├── frm_Main.cs
│ │ │ ├── frm_Main.Designer.cs
│ │ │ ├── frm_Main.resx
│ │ │ ├── GetString.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetString.sln
│ │ └── GetString.suo
│ ├── 02_zmhh
│ │ └── InvertedComma
│ │ ├── InvertedComma
│ │ │ ├── InvertedComma.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── InvertedComma.sln
│ │ └── InvertedComma.suo
│ ├── 03
│ │ └── Checked
│ │ ├── Checked
│ │ │ ├── Checked.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Checked.sln
│ │ └── Checked.suo
│ ├── 03_zmhh
│ │ └── CheckedSbyte
│ │ ├── CheckedSbyte
│ │ │ ├── CheckedSbyte.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CheckedSbyte.sln
│ │ └── CheckedSbyte.suo
│ ├── 04
│ │ └── TypeOf
│ │ ├── TypeOf
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── TypeOf.csproj
│ │ ├── TypeOf.sln
│ │ └── TypeOf.suo
│ ├── 04_zmhh
│ │ └── GetObjectInfo
│ │ ├── GetObjectInfo
│ │ │ ├── GetObjectInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetObjectInfo.sln
│ │ └── GetObjectInfo.suo
│ ├── 05
│ │ └── Using
│ │ ├── Using
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Using.csproj
│ │ ├── Using.sln
│ │ └── Using.suo
│ └── 05_zmhh
│ └── UseUsing
│ ├── UseUsing
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── UseUsing.csproj
│ ├── UseUsing.sln
│ └── UseUsing.suo
├── 03
│ ├── qjyy
│ │ ├── 01
│ │ │ └── Arithmetic
│ │ │ ├── Arithmetic
│ │ │ │ ├── Arithmetic.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Arithmetic.sln
│ │ │ └── Arithmetic.suo
│ │ ├── 01_diy
│ │ │ └── Recursion
│ │ │ ├── Recursion
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Recursion.csproj
│ │ │ │ └── Recursion.csproj.user
│ │ │ ├── Recursion.sln
│ │ │ └── Recursion.suo
│ │ ├── 02
│ │ │ └── IfThenElse
│ │ │ ├── IfThenElse
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── IfThenElse.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IfThenElse.sln
│ │ │ ├── IfThenElse.suo
│ │ │ ├── IfThenElse.vsmdi
│ │ │ ├── LocalTestRun.testrunconfig
│ │ │ └── TestProject1
│ │ │ ├── AuthoringTests.txt
│ │ │ ├── Form1Test.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TestProject1.csproj
│ │ │ └── 测试引用
│ │ │ └── IfThenElse.accessor
│ │ ├── 02_diy
│ │ │ └── JudgePayManner
│ │ │ ├── JudgePayManner
│ │ │ │ ├── JudgePayManner.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── JudgePayManner.sln
│ │ │ └── JudgePayManner.suo
│ │ ├── 03
│ │ │ └── SelectColor
│ │ │ ├── SelectColor
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SelectColor.csproj
│ │ │ ├── SelectColor.sln
│ │ │ └── SelectColor.suo
│ │ ├── 03_diy
│ │ │ └── Grade
│ │ │ ├── Grade
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Grade.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Grade.sln
│ │ │ └── Grade.suo
│ │ ├── 04
│ │ │ └── Goto
│ │ │ ├── Goto
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Goto.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Goto.sln
│ │ │ └── Goto.suo
│ │ ├── 04_diy
│ │ │ └── FindItem
│ │ │ ├── FindItem.sln
│ │ │ ├── FindItem.suo
│ │ │ └── Goto
│ │ │ ├── FindItem.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── 05
│ │ │ └── NumGame
│ │ │ ├── NumGame
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── NumGame.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NumGame.sln
│ │ │ └── NumGame.suo
│ │ └── 05_diy
│ │ └── GoldBach
│ │ ├── GoldBach
│ │ │ ├── GoldBach.csproj
│ │ │ ├── GoldBach.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GoldBach.sln
│ │ └── GoldBach.suo
│ ├── sl
│ │ ├── 3.01
│ │ │ └── EightQueen
│ │ │ ├── EightQueen
│ │ │ │ ├── EightQueen.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── EightQueen.sln
│ │ │ └── EightQueen.suo
│ │ ├── 3.02
│ │ │ └── 3.02.txt
│ │ ├── 3.03
│ │ │ └── UseIF
│ │ │ ├── UseIF
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseIF.csproj
│ │ │ ├── UseIF.sln
│ │ │ └── UseIF.suo
│ │ ├── 3.04
│ │ │ └── UseElseif
│ │ │ ├── UseElseif
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseElseif.csproj
│ │ │ ├── UseElseif.sln
│ │ │ └── UseElseif.suo
│ │ ├── 3.05
│ │ │ └── QTIF
│ │ │ ├── QTIF
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── QTIF.csproj
│ │ │ ├── QTIF.sln
│ │ │ └── QTIF.suo
│ │ ├── 3.06
│ │ │ └── UseSwitch
│ │ │ ├── UseSwitch
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseSwitch.csproj
│ │ │ ├── UseSwitch.sln
│ │ │ └── UseSwitch.suo
│ │ ├── 3.07
│ │ │ └── IfToSwitch
│ │ │ ├── IfToSwitch
│ │ │ │ ├── IfToSwitch.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── IfToSwitch.sln
│ │ │ └── IfToSwitch.suo
│ │ ├── 3.08
│ │ │ └── UseWhile
│ │ │ ├── UseWhile
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWhile.csproj
│ │ │ ├── UseWhile.sln
│ │ │ └── UseWhile.suo
│ │ ├── 3.09
│ │ │ └── BCWhile
│ │ │ ├── BCWhile
│ │ │ │ ├── BCWhile.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BCWhile.sln
│ │ │ └── BCWhile.suo
│ │ ├── 3.10
│ │ │ └── UseDoWhile
│ │ │ ├── UseDoWhile
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDoWhile.csproj
│ │ │ ├── UseDoWhile.sln
│ │ │ └── UseDoWhile.suo
│ │ ├── 3.11
│ │ │ └── UseFor
│ │ │ ├── UseFor
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseFor.csproj
│ │ │ ├── UseFor.sln
│ │ │ └── UseFor.suo
│ │ ├── 3.12
│ │ │ └── UseForeach
│ │ │ ├── UseForeach
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseForeach.csproj
│ │ │ ├── UseForeach.sln
│ │ │ └── UseForeach.suo
│ │ ├── 3.13
│ │ │ └── BreakToSwitch
│ │ │ ├── BreakToSwitch
│ │ │ │ ├── BreakToSwitch.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BreakToSwitch.sln
│ │ │ └── BreakToSwitch.suo
│ │ ├── 3.14
│ │ │ └── BreakToFor
│ │ │ ├── BreakToFor
│ │ │ │ ├── BreakToFor.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BreakToFor.sln
│ │ │ └── BreakToFor.suo
│ │ ├── 3.15
│ │ │ └── UseContinue
│ │ │ ├── UseContinue
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseContinue.csproj
│ │ │ ├── UseContinue.sln
│ │ │ └── UseContinue.suo
│ │ ├── 3.16
│ │ │ └── UseGoto
│ │ │ ├── UseGoto
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseGoto.csproj
│ │ │ ├── UseGoto.sln
│ │ │ └── UseGoto.suo
│ │ └── 3.17
│ │ └── UseReturn
│ │ ├── UseReturn
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseReturn.csproj
│ │ ├── UseReturn.sln
│ │ └── UseReturn.suo
│ └── zmhh
│ ├── 01
│ │ └── InputMessage
│ │ ├── InputMessage
│ │ │ ├── InputMessage.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── InputMessage.sln
│ │ └── InputMessage.suo
│ ├── 01_zmhh
│ │ └── OutputNum
│ │ ├── OutputNum
│ │ │ ├── OutputNum.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── OutputNum.sln
│ │ └── OutputNum.suo
│ ├── 02
│ │ └── ConvertLowerToUpper
│ │ ├── ConvertLowerToUpper
│ │ │ ├── ConvertLowerToUpper.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConvertLowerToUpper.sln
│ │ └── ConvertLowerToUpper.suo
│ ├── 02_zmhh
│ │ └── ConvertUpperToLower
│ │ ├── ConvertLowerToUpper.suo
│ │ ├── ConvertUpperToLower
│ │ │ ├── ConvertUpperToLower.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConvertUpperToLower.sln
│ │ └── ConvertUpperToLower.suo
│ ├── 03
│ │ └── CockSort
│ │ ├── CockSort
│ │ │ ├── CockSort.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CockSort.sln
│ │ └── CockSort.suo
│ ├── 03_zmhh
│ │ └── BubbleUp
│ │ ├── BubbleUp
│ │ │ ├── BubbleUp.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── BubbleUp.sln
│ │ └── BubbleUp.suo
│ ├── 04
│ │ └── Login
│ │ ├── Login
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Login.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Login.sln
│ │ └── Login.suo
│ ├── 04_zmhh
│ │ └── Login
│ │ ├── Login
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Login.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Login.sln
│ │ └── Login.suo
│ ├── 05
│ │ └── WhichWay
│ │ ├── WhichWay
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WhichWay.csproj
│ │ ├── WhichWay.sln
│ │ └── WhichWay.suo
│ └── 05_zmhh
│ └── WhichWay
│ ├── WhichWay
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── WhichWay.csproj
│ ├── WhichWay.sln
│ └── WhichWay.suo
├── 04
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ASCII
│ │ │ ├── ASCII
│ │ │ │ ├── ASCII.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ASCII.sln
│ │ │ └── ASCII.suo
│ │ ├── 01_diy
│ │ │ └── ASCII
│ │ │ ├── ASCII
│ │ │ │ ├── ASCII.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ASCII.sln
│ │ │ └── ASCII.suo
│ │ ├── 02
│ │ │ └── ChineseToABC
│ │ │ ├── ChineseToABC
│ │ │ │ ├── ChineseToABC.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── PinYin.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChineseToABC.sln
│ │ │ └── ChineseToABC.suo
│ │ ├── 02_diy
│ │ │ └── ChineseCode
│ │ │ ├── ChineseCode
│ │ │ │ ├── ChineseCode.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChineseCode.sln
│ │ │ └── ChineseCode.suo
│ │ ├── 03
│ │ │ └── ReplaceString
│ │ │ ├── ReplaceString
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ReplaceString.csproj
│ │ │ ├── ReplaceString.sln
│ │ │ └── ReplaceString.suo
│ │ ├── 03_diy
│ │ │ └── SearchString
│ │ │ ├── SearchString
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SearchString.csproj
│ │ │ ├── SearchString.sln
│ │ │ └── SearchString.suo
│ │ ├── 04
│ │ │ └── StringEncrypt
│ │ │ ├── StringEncrypt
│ │ │ │ ├── Encrypt.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StringEncrypt.csproj
│ │ │ ├── StringEncrypt.sln
│ │ │ └── StringEncrypt.suo
│ │ ├── 04_diy
│ │ │ └── Encrypt
│ │ │ ├── Encrypt
│ │ │ │ ├── Encrypt.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Encrypt.sln
│ │ │ └── Encrypt.suo
│ │ ├── 05
│ │ │ └── Conversion
│ │ │ ├── Conversion
│ │ │ │ ├── Conversion.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Transform.cs
│ │ │ ├── Conversion.sln
│ │ │ └── Conversion.suo
│ │ └── 05_diy
│ │ └── Conversion
│ │ ├── Conversion
│ │ │ ├── Conversion.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Conversion.sln
│ │ └── Conversion.suo
│ ├── sl
│ │ ├── 4.01
│ │ │ └── 4.01.txt
│ │ ├── 4.02
│ │ │ └── UseChar
│ │ │ ├── UseChar
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseChar.csproj
│ │ │ ├── UseChar.sln
│ │ │ └── UseChar.suo
│ │ ├── 4.03
│ │ │ └── UseZY
│ │ │ ├── UseZY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseZY.csproj
│ │ │ ├── UseZY.sln
│ │ │ └── UseZY.suo
│ │ ├── 4.04
│ │ │ └── 4.04.txt
│ │ ├── 4.05
│ │ │ └── 4.05.txt
│ │ ├── 4.06
│ │ │ └── CompareString
│ │ │ ├── CompareString
│ │ │ │ ├── CompareString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CompareString.sln
│ │ │ └── CompareString.suo
│ │ ├── 4.07
│ │ │ └── CompareToString
│ │ │ ├── CompareToString
│ │ │ │ ├── CompareToString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CompareToString.sln
│ │ │ └── CompareToString.suo
│ │ ├── 4.08
│ │ │ └── EqualsString
│ │ │ ├── EqualsString
│ │ │ │ ├── EqualsString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── EqualsString.sln
│ │ │ └── EqualsString.suo
│ │ ├── 4.09
│ │ │ └── FormatString
│ │ │ ├── FormatString
│ │ │ │ ├── FormatString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── FormatString.sln
│ │ │ └── FormatString.suo
│ │ ├── 4.10
│ │ │ └── OutDate
│ │ │ ├── OutDate
│ │ │ │ ├── OutDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── OutDate.sln
│ │ │ └── OutDate.suo
│ │ ├── 4.11
│ │ │ └── SubString
│ │ │ ├── SubString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SubString.csproj
│ │ │ ├── SubString.sln
│ │ │ └── SubString.suo
│ │ ├── 4.12
│ │ │ └── SplitString
│ │ │ ├── SplitString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SplitString.csproj
│ │ │ ├── SplitString.sln
│ │ │ └── SplitString.suo
│ │ ├── 4.13
│ │ │ └── InsertString
│ │ │ ├── InsertString
│ │ │ │ ├── InsertString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── InsertString.sln
│ │ │ └── InsertString.suo
│ │ ├── 4.14
│ │ │ └── PadString
│ │ │ ├── PadString
│ │ │ │ ├── PadString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── PadString.sln
│ │ │ └── PadString.suo
│ │ ├── 4.15
│ │ │ └── RemoveString
│ │ │ ├── RemoveString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── RemoveString.csproj
│ │ │ ├── RemoveString.sln
│ │ │ └── RemoveString.suo
│ │ ├── 4.16
│ │ │ └── CopyString
│ │ │ ├── CopyString
│ │ │ │ ├── CopyString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CopyString.sln
│ │ │ └── CopyString.suo
│ │ ├── 4.17
│ │ │ └── CopyToString
│ │ │ ├── CopyToString
│ │ │ │ ├── CopyToString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CopyToString.sln
│ │ │ └── CopyToString.suo
│ │ ├── 4.18
│ │ │ └── ReplaceString
│ │ │ ├── ReplaceString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── ReplaceString.csproj
│ │ │ ├── ReplaceString.sln
│ │ │ └── ReplaceString.suo
│ │ ├── 4.19
│ │ │ └── 4.19.txt
│ │ ├── 4.20
│ │ │ └── UseStringBuilder
│ │ │ ├── UseStringBuilder
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseStringBuilder.csproj
│ │ │ ├── UseStringBuilder.sln
│ │ │ └── UseStringBuilder.suo
│ │ └── 4.21
│ │ └── 4.21.txt
│ └── zmhh
│ ├── 01
│ │ └── UserName
│ │ ├── UserName
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UserName.csproj
│ │ ├── UserName.sln
│ │ └── UserName.suo
│ ├── 01_zmhh
│ │ └── UserName
│ │ ├── UserName
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UserName.csproj
│ │ ├── UserName.sln
│ │ └── UserName.suo
│ ├── 02
│ │ └── ReverseStr
│ │ ├── ReverseStr
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReverseStr.csproj
│ │ ├── ReverseStr.sln
│ │ └── ReverseStr.suo
│ ├── 02_zmhh
│ │ └── ReverseStr
│ │ ├── ReverseStr
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReverseStr.csproj
│ │ ├── ReverseStr.sln
│ │ └── ReverseStr.suo
│ ├── 03
│ │ └── RemoveBlank
│ │ ├── RemoveBlank
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RemoveBlank.csproj
│ │ ├── RemoveBlank.sln
│ │ └── RemoveBlank.suo
│ ├── 03_zmhh
│ │ └── RemoveBlank
│ │ ├── RemoveBlank
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RemoveBlank.csproj
│ │ ├── RemoveBlank.sln
│ │ └── RemoveBlank.suo
│ ├── 04
│ │ └── GetCount
│ │ ├── GetCount
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetCount.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetCount.sln
│ │ └── GetCount.suo
│ ├── 04_zmhh
│ │ └── GetCount
│ │ ├── GetCount
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetCount.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetCount.sln
│ │ └── GetCount.suo
│ ├── 05
│ │ └── FilePathString
│ │ ├── FilePathString
│ │ │ ├── FilePathString.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FilePathString.sln
│ │ └── FilePathString.suo
│ └── 05_zmhh
│ └── FilePathString
│ ├── FilePathString
│ │ ├── FilePathString.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── FilePathString.sln
│ └── FilePathString.suo
├── 05
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ConsoleApplication1
│ │ │ ├── ConsoleApplication1
│ │ │ │ ├── ConsoleApplication1.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ConsoleApplication1.sln
│ │ │ └── ConsoleApplication1.suo
│ │ ├── 01_diy
│ │ │ └── ConsoleApplication1
│ │ │ ├── ConsoleApplication1
│ │ │ │ ├── ConsoleApplication1.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ConsoleApplication1.sln
│ │ │ └── ConsoleApplication1.suo
│ │ ├── 02
│ │ │ └── YSFHResult
│ │ │ ├── YSFHResult
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── YSFHResult.csproj
│ │ │ ├── YSFHResult.sln
│ │ │ └── YSFHResult.suo
│ │ ├── 02_diy
│ │ │ └── CockSort
│ │ │ ├── CockSort
│ │ │ │ ├── CockSort.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CockSort.sln
│ │ │ └── CockSort.suo
│ │ ├── 03
│ │ │ └── AddStudentINList
│ │ │ ├── AddStudentINList
│ │ │ │ ├── AddStudentINList.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddStudentINList.sln
│ │ │ └── AddStudentINList.suo
│ │ ├── 03_diy
│ │ │ └── AddStudentINList
│ │ │ ├── AddStudentINList
│ │ │ │ ├── AddStudentINList.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddStudentINList.sln
│ │ │ └── AddStudentINList.suo
│ │ ├── 04
│ │ │ └── SelectXMLByHasTable
│ │ │ ├── SelectXMLByHasTable
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SelectXMLByHasTable.csproj
│ │ │ ├── SelectXMLByHasTable.sln
│ │ │ └── SelectXMLByHasTable.suo
│ │ ├── 04_diy
│ │ │ └── SelectXMLByHasTable
│ │ │ ├── SelectXMLByHasTable
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SelectXMLByHasTable.csproj
│ │ │ ├── SelectXMLByHasTable.sln
│ │ │ └── SelectXMLByHasTable.suo
│ │ ├── 05
│ │ │ └── ConsoleApplication1
│ │ │ ├── ConsoleApplication1
│ │ │ │ ├── ConsoleApplication1.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ConsoleApplication1.sln
│ │ │ └── ConsoleApplication1.suo
│ │ └── 05_diy
│ │ └── ConsoleApplication1
│ │ ├── ConsoleApplication1
│ │ │ ├── ConsoleApplication1.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConsoleApplication1.sln
│ │ └── ConsoleApplication1.suo
│ ├── sl
│ │ ├── 5.01
│ │ │ └── 5.01.txt
│ │ ├── 5.02
│ │ │ └── 5.02.txt
│ │ ├── 5.03
│ │ │ └── 5.03.txt
│ │ ├── 5.04
│ │ │ └── 5.04.txt
│ │ ├── 5.05
│ │ │ └── 5.05.txt
│ │ ├── 5.06
│ │ │ └── UseOneArray
│ │ │ ├── UseOneArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseOneArray.csproj
│ │ │ ├── UseOneArray.sln
│ │ │ └── UseOneArray.suo
│ │ ├── 5.07
│ │ │ └── 5.07.txt
│ │ ├── 5.08
│ │ │ └── 5.08.txt
│ │ ├── 5.09
│ │ │ └── 5.09.txt
│ │ ├── 5.10
│ │ │ └── UseTwoArray
│ │ │ ├── UseTwoArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseTwoArray.csproj
│ │ │ ├── UseTwoArray.sln
│ │ │ └── UseTwoArray.suo
│ │ ├── 5.11
│ │ │ └── 5.11.txt
│ │ ├── 5.12
│ │ │ └── UseDYNArray
│ │ │ ├── UseDYNArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDYNArray.csproj
│ │ │ ├── UseDYNArray.sln
│ │ │ └── UseDYNArray.suo
│ │ ├── 5.13
│ │ │ └── 5.13.txt
│ │ ├── 5.14
│ │ │ └── 5.14.txt
│ │ ├── 5.15
│ │ │ └── CombinArray
│ │ │ ├── CombinArray
│ │ │ │ ├── CombinArray.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CombinArray.sln
│ │ │ └── CombinArray.suo
│ │ ├── 5.16
│ │ │ └── SplitArray
│ │ │ ├── SplitArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SplitArray.csproj
│ │ │ ├── SplitArray.sln
│ │ │ └── SplitArray.suo
│ │ ├── 5.17
│ │ │ └── 5.17.txt
│ │ ├── 5.18
│ │ │ └── 5.18.txt
│ │ ├── 5.19
│ │ │ └── 5.19.txt
│ │ ├── 5.20
│ │ │ └── 5.20.txt
│ │ ├── 5.21
│ │ │ └── 5.21.txt
│ │ ├── 5.22
│ │ │ └── AddArrayList
│ │ │ ├── AddArrayList
│ │ │ │ ├── AddArrayList.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── AddArrayList.sln
│ │ │ └── AddArrayList.suo
│ │ ├── 5.23
│ │ │ └── 5.23.txt
│ │ ├── 5.24
│ │ │ └── 5.24.txt
│ │ ├── 5.25
│ │ │ └── 5.25.txt
│ │ ├── 5.26
│ │ │ └── 5.26.txt
│ │ ├── 5.27
│ │ │ └── RemoveArrayList
│ │ │ ├── RemoveArrayList
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── RemoveArrayList.csproj
│ │ │ ├── RemoveArrayList.sln
│ │ │ └── RemoveArrayList.suo
│ │ ├── 5.28
│ │ │ └── GetArrayList
│ │ │ ├── GetArrayList
│ │ │ │ ├── GetArrayList.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── GetArrayList.sln
│ │ │ └── GetArrayList.suo
│ │ ├── 5.29
│ │ │ └── 5.29.txt
│ │ ├── 5.30
│ │ │ └── 5.30.txt
│ │ └── 5.31
│ │ └── 5.31.txt
│ └── zmhh
│ ├── 01
│ │ └── ArrayRank
│ │ ├── ArrayRank
│ │ │ ├── ArrayRank.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ArrayRank.sln
│ │ └── ArrayRank.suo
│ ├── 01_zmhh
│ │ └── ArrayRank
│ │ ├── ArrayRank
│ │ │ ├── ArrayRank.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ArrayRank.sln
│ │ └── ArrayRank.suo
│ ├── 02
│ │ └── FindStr
│ │ ├── FindStr
│ │ │ ├── FindStr.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindStr.sln
│ │ └── FindStr.suo
│ ├── 02_zmhh
│ │ └── FindStr
│ │ ├── FindStr
│ │ │ ├── FindStr.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindStr.sln
│ │ └── FindStr.suo
│ ├── 03
│ │ └── AddElementInArray
│ │ ├── AddElementInArray
│ │ │ ├── AddElementInArray.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddElementInArray.sln
│ │ └── AddElementInArray.suo
│ ├── 03_zmhh
│ │ └── AddArrayInArray
│ │ ├── AddArrayInArray
│ │ │ ├── AddArrayInArray.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddArrayInArray.sln
│ │ └── AddArrayInArray.suo
│ ├── 04
│ │ └── DelArrayNoLength
│ │ ├── DelArrayNoLength
│ │ │ ├── DelArrayNoLength.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DelArrayNoLength.sln
│ │ └── DelArrayNoLength.suo
│ ├── 04_zmhh
│ │ └── DelArrayNoLength
│ │ ├── DelArrayNoLength
│ │ │ ├── DelArrayNoLength.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DelArrayNoLength.sln
│ │ └── DelArrayNoLength.suo
│ ├── 05
│ │ └── DelArrayYesLength
│ │ ├── DelArrayYesLength
│ │ │ ├── DelArrayYesLength.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DelArrayYesLength.sln
│ │ └── DelArrayYesLength.suo
│ └── 05_zmhh
│ └── DelArrayYesLength
│ ├── DelArrayYesLength
│ │ ├── DelArrayYesLength.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── DelArrayYesLength.sln
│ └── DelArrayYesLength.suo
├── 06
│ ├── qjyy
│ │ ├── 01
│ │ │ └── IDCardRemove
│ │ │ ├── IDCardRemove
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IDCardRemove.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IDCardRemove.sln
│ │ │ └── IDCardRemove.suo
│ │ ├── 01_diy
│ │ │ └── IDCardRemove
│ │ │ ├── IDCardRemove
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IDCardRemove.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IDCardRemove.sln
│ │ │ └── IDCardRemove.suo
│ │ ├── 02
│ │ │ └── ALitterArms
│ │ │ ├── ALitterArms
│ │ │ │ ├── ALitterArms.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ALitterArms.sln
│ │ │ └── ALitterArms.suo
│ │ ├── 02_diy
│ │ │ └── HundredChicken
│ │ │ ├── HundredChicken
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── HundredChicken.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── HundredChicken.sln
│ │ │ └── HundredChicken.suo
│ │ ├── 03
│ │ │ └── DaffodilAccount
│ │ │ ├── DaffodilAccount
│ │ │ │ ├── DaffodilAccount.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DaffodilAccount.sln
│ │ │ └── DaffodilAccount.suo
│ │ ├── 03_diy
│ │ │ └── AgreeArithmetic
│ │ │ ├── AgreeArithmetic
│ │ │ │ ├── AgreeArithmetic.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AgreeArithmetic.sln
│ │ │ └── AgreeArithmetic.suo
│ │ ├── 04
│ │ │ └── ConstellationSearch
│ │ │ ├── ConstellationSearch
│ │ │ │ ├── ConstellationSearch.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 双子座.jpg
│ │ │ │ │ ├── 双鱼座.jpg
│ │ │ │ │ ├── 图标 (11).ico
│ │ │ │ │ ├── 图标 (168).ico
│ │ │ │ │ ├── 处女座.jpg
│ │ │ │ │ ├── 天秤座.jpg
│ │ │ │ │ ├── 天蝎座.jpg
│ │ │ │ │ ├── 射手座.jpg
│ │ │ │ │ ├── 巨蟹座.jpg
│ │ │ │ │ ├── 摩羯座.jpg
│ │ │ │ │ ├── 星座查询.jpg
│ │ │ │ │ ├── 查询按钮.png
│ │ │ │ │ ├── 水瓶座.jpg
│ │ │ │ │ ├── 狮子座.jpg
│ │ │ │ │ ├── 白羊座.jpg
│ │ │ │ │ └── 金牛座.jpg
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── exit.jpg
│ │ │ │ └── search.jpg
│ │ │ ├── ConstellationSearch.sln
│ │ │ └── ConstellationSearch.suo
│ │ ├── 04_diy
│ │ │ └── ShengXiaoExample
│ │ │ ├── ShengXiaoExample
│ │ │ │ ├── Class1.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShengXiaoExample.csproj
│ │ │ ├── ShengXiaoExample.sln
│ │ │ └── ShengXiaoExample.suo
│ │ ├── 05
│ │ │ └── DbColorBall
│ │ │ ├── DbColorBall
│ │ │ │ ├── DbColorBall.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 图标.ico
│ │ │ │ │ ├── 按钮.gif
│ │ │ │ │ └── 界面.jpg
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DbColorBall.sln
│ │ │ └── DbColorBall.suo
│ │ └── 05_diy
│ │ └── GetAwardByMobile
│ │ ├── GetAwardByMobile
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetAwardByMobile.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetAwardByMobile.sln
│ │ └── GetAwardByMobile.suo
│ ├── sl
│ │ ├── 6.01
│ │ │ └── FindMaxAndMin
│ │ │ ├── FindMaxAndMin
│ │ │ │ ├── FindMaxAndMin.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── FindMaxAndMin.sln
│ │ │ └── FindMaxAndMin.suo
│ │ ├── 6.02
│ │ │ └── YHSJ
│ │ │ ├── YHSJ
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── YHSJ.csproj
│ │ │ ├── YHSJ.sln
│ │ │ └── YHSJ.suo
│ │ ├── 6.03
│ │ │ └── BubbleUpSort
│ │ │ ├── BubbleUpSort
│ │ │ │ ├── BubbleUpSort.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BubbleUpSort.sln
│ │ │ └── BubbleUpSort.suo
│ │ ├── 6.04
│ │ │ └── InsertSort
│ │ │ ├── InsertSort
│ │ │ │ ├── InsertSort.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── InsertSort.sln
│ │ │ └── InsertSort.suo
│ │ ├── 6.05
│ │ │ └── SelectSort
│ │ │ ├── SelectSort
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SelectSort.csproj
│ │ │ ├── SelectSort.sln
│ │ │ └── SelectSort.suo
│ │ └── 6.06
│ │ └── HillSort
│ │ ├── HillSort
│ │ │ ├── HillSort.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── HillSort.sln
│ │ └── HillSort.suo
│ └── zmhh
│ ├── 01
│ │ └── IncrementSquare
│ │ ├── IncrementSquare
│ │ │ ├── IncrementSquare.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── IncrementSquare.sln
│ │ └── IncrementSquare.suo
│ ├── 01_zmhh
│ │ └── IncrementSquare
│ │ ├── IncrementSquare
│ │ │ ├── IncrementSquare.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── IncrementSquare.sln
│ │ └── IncrementSquare.suo
│ ├── 02
│ │ └── TenFactiorial
│ │ ├── TenFactiorial
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── TenFactiorial.csproj
│ │ ├── TenFactiorial.sln
│ │ └── TenFactiorial.suo
│ ├── 02_zmhh
│ │ └── TenFactiorial
│ │ ├── TenFactiorial
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── TenFactiorial.csproj
│ │ ├── TenFactiorial.sln
│ │ └── TenFactiorial.suo
│ ├── 03
│ │ └── GetMaxCommonDivisor
│ │ ├── GetMaxCommonDivisor
│ │ │ ├── GetMaxCommonDivisor.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetMaxCommonDivisor.sln
│ │ └── GetMaxCommonDivisor.suo
│ ├── 03_zmhh
│ │ └── GetMinCommonMultiple
│ │ ├── GetMinCommonMultiple
│ │ │ ├── GetMinCommonMultiple.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetMinCommonMultiple.sln
│ │ └── GetMinCommonMultiple.suo
│ ├── 04
│ │ └── ByteConversion
│ │ ├── ByteConversion
│ │ │ ├── ByteConversion.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ByteConversion.sln
│ │ └── ByteConversion.suo
│ ├── 04_zmhh
│ │ └── ByteConversion
│ │ ├── ByteConversion
│ │ │ ├── ByteConversion.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ByteConversion.sln
│ │ └── ByteConversion.suo
│ ├── 05
│ │ └── ArbitrarinessCombination
│ │ ├── ArbitrarinessCombination
│ │ │ ├── ArbitrarinessCombination.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ArbitrarinessCombination.sln
│ │ └── ArbitrarinessCombination.suo
│ └── 05_zmhh
│ └── ArbitrarinessCombination
│ ├── ArbitrarinessCombination
│ │ ├── ArbitrarinessCombination.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ArbitrarinessCombination.sln
│ └── ArbitrarinessCombination.suo
├── 07
│ ├── qjyy
│ │ ├── 01
│ │ │ └── PeopleSpeakByMState
│ │ │ ├── PeopleSpeakByMState
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PeopleSpeakByMState.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PeopleSpeakByMState.sln
│ │ │ └── PeopleSpeakByMState.suo
│ │ ├── 01_diy
│ │ │ └── Vehicles
│ │ │ ├── Vehicles
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Vehicles.csproj
│ │ │ ├── Vehicles.sln
│ │ │ └── Vehicles.suo
│ │ ├── 02
│ │ │ └── CalcByClass
│ │ │ ├── CalcByClass
│ │ │ │ ├── CalcByClass.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CalcByClass.sln
│ │ │ └── CalcByClass.suo
│ │ ├── 02_diy
│ │ │ └── AboutLeechdom
│ │ │ ├── AboutLeechdom
│ │ │ │ ├── AboutLeechdom.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── AboutLeechdom.sln
│ │ │ └── AboutLeechdom.suo
│ │ ├── 03
│ │ │ └── StoreStuInfo
│ │ │ ├── StoreStuInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StoreStuInfo.csproj
│ │ │ ├── StoreStuInfo.sln
│ │ │ └── StoreStuInfo.suo
│ │ ├── 03_diy
│ │ │ └── PartialClass
│ │ │ ├── PartialClass
│ │ │ │ ├── PartialClass.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── PartialClass.sln
│ │ │ └── PartialClass.suo
│ │ ├── 04
│ │ │ └── ExtensiveList
│ │ │ ├── ExtensiveList
│ │ │ │ ├── ExtensiveList.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ExtensiveList.sln
│ │ │ └── ExtensiveList.suo
│ │ ├── 04_diy
│ │ │ └── ListStudent
│ │ │ ├── ListStudent
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── ListStudent.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ListStudent.sln
│ │ │ └── ListStudent.suo
│ │ ├── 05
│ │ │ └── RemoveSameNum
│ │ │ ├── RemoveSameNum
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RemoveSameNum.csproj
│ │ │ ├── RemoveSameNum.sln
│ │ │ └── RemoveSameNum.suo
│ │ └── 05_diy
│ │ └── RemoveSameNum
│ │ ├── RemoveSameNum
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RemoveSameNum.csproj
│ │ ├── RemoveSameNum.sln
│ │ └── RemoveSameNum.suo
│ ├── sl
│ │ ├── 7.01
│ │ │ └── 7.01.txt
│ │ ├── 7.02
│ │ │ └── 7.02.txt
│ │ ├── 7.03
│ │ │ └── 7.03.txt
│ │ ├── 7.04
│ │ │ └── UseAttribute
│ │ │ ├── UseAttribute
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseAttribute.csproj
│ │ │ ├── UseAttribute.sln
│ │ │ └── UseAttribute.suo
│ │ ├── 7.05
│ │ │ └── 7.05.txt
│ │ ├── 7.06
│ │ │ └── StaticMethod
│ │ │ ├── StaticMethod
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── StaticMethod.csproj
│ │ │ ├── StaticMethod.sln
│ │ │ └── StaticMethod.suo
│ │ ├── 7.07
│ │ │ └── NStaticMethod
│ │ │ ├── NStaticMethod
│ │ │ │ ├── NStaticMethod.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── NStaticMethod.sln
│ │ │ └── NStaticMethod.suo
│ │ ├── 7.08
│ │ │ └── OverMethod
│ │ │ ├── OverMethod
│ │ │ │ ├── OverMethod.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── OverMethod.sln
│ │ │ └── OverMethod.suo
│ │ ├── 7.09
│ │ │ └── 7.09.txt
│ │ ├── 7.10
│ │ │ └── UseEnum
│ │ │ ├── UseEnum
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseEnum.csproj
│ │ │ ├── UseEnum.sln
│ │ │ └── UseEnum.suo
│ │ ├── 7.11
│ │ │ └── 7.11.txt
│ │ ├── 7.12
│ │ │ └── 7.12.txt
│ │ ├── 7.13
│ │ │ └── FXInterface
│ │ │ ├── FXInterface
│ │ │ │ ├── FXInterface.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── FXInterface.sln
│ │ │ └── FXInterface.suo
│ │ ├── 7.14
│ │ │ └── 7.14.txt
│ │ ├── 7.15
│ │ │ └── UseStruct
│ │ │ ├── UseStruct
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseStruct.csproj
│ │ │ ├── UseStruct.sln
│ │ │ └── UseStruct.suo
│ │ ├── 7.16
│ │ │ └── 7.16.txt
│ │ ├── 7.17
│ │ │ └── UseGZHS
│ │ │ ├── UseGZHS
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseGZHS.csproj
│ │ │ ├── UseGZHS.sln
│ │ │ └── UseGZHS.suo
│ │ ├── 7.18
│ │ │ └── UseXGHS
│ │ │ ├── UseXGHS
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseXGHS.csproj
│ │ │ ├── UseXGHS.sln
│ │ │ └── UseXGHS.suo
│ │ ├── 7.19
│ │ │ └── UseDuiXiang
│ │ │ ├── UseDuiXiang
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDuiXiang.csproj
│ │ │ ├── UseDuiXiang.sln
│ │ │ └── UseDuiXiang.suo
│ │ ├── 7.20
│ │ │ └── UseFengZhuang
│ │ │ ├── UseFengZhuang
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseFengZhuang.csproj
│ │ │ ├── UseFengZhuang.sln
│ │ │ └── UseFengZhuang.suo
│ │ ├── 7.21
│ │ │ └── UseSingleJC
│ │ │ ├── UseSingleJC
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseSingleJC.csproj
│ │ │ ├── UseSingleJC.sln
│ │ │ └── UseSingleJC.suo
│ │ ├── 7.22
│ │ │ └── UseMulJC
│ │ │ ├── UseMulJC
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseMulJC.csproj
│ │ │ ├── UseMulJC.sln
│ │ │ └── UseMulJC.suo
│ │ └── 7.23
│ │ └── UseDuoTai
│ │ ├── UseDuoTai
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseDuoTai.csproj
│ │ ├── UseDuoTai.sln
│ │ └── UseDuoTai.suo
│ └── zmhh
│ ├── 01
│ │ └── StoreIDAndName
│ │ ├── StoreIDAndName
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── StoreIDAndName.csproj
│ │ ├── StoreIDAndName.sln
│ │ └── StoreIDAndName.suo
│ ├── 01_zmhh
│ │ └── StoreIDAndName
│ │ ├── StoreIDAndName
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── StoreIDAndName.csproj
│ │ ├── StoreIDAndName.sln
│ │ └── StoreIDAndName.suo
│ ├── 02
│ │ └── SquareByMethod
│ │ ├── SquareByMethod
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SquareByMethod.csproj
│ │ ├── SquareByMethod.sln
│ │ └── SquareByMethod.suo
│ ├── 02_zmhh
│ │ └── CubeByMethod
│ │ ├── CubeByMethod
│ │ │ ├── CubeByMethod.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CubeByMethod.sln
│ │ └── CubeByMethod.suo
│ ├── 03
│ │ └── TypesCalc
│ │ ├── TypesCalc
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── TypesCalc.csproj
│ │ ├── TypesCalc.sln
│ │ └── TypesCalc.suo
│ ├── 03_zmhh
│ │ └── ComputeGirth
│ │ ├── ComputeGirth
│ │ │ ├── ComputeGirth.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ComputeGirth.sln
│ │ └── ComputeGirth.suo
│ ├── 04
│ │ └── GetRAreaByStruct
│ │ ├── GetRAreaByStruct
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetRAreaByStruct.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetRAreaByStruct.sln
│ │ └── GetRAreaByStruct.suo
│ ├── 04_zmhh
│ │ └── GetRAreaByStruct
│ │ ├── GetRAreaByStruct
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetRAreaByStruct.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetRAreaByStruct.sln
│ │ └── GetRAreaByStruct.suo
│ ├── 05
│ │ └── GetTAreaByClass
│ │ ├── GetTAreaByClass
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetTAreaByClass.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetTAreaByClass.sln
│ │ └── GetTAreaByClass.suo
│ └── 05_zmhh
│ └── GetTAreaByClass
│ ├── GetTAreaByClass
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetTAreaByClass.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── GetTAreaByClass.sln
│ └── GetTAreaByClass.suo
├── 08
│ ├── qjyy
│ │ ├── 01
│ │ │ └── StartFormByLClosePosition
│ │ │ ├── StartFormByLClosePosition
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StartFormByLClosePosition.csproj
│ │ │ ├── StartFormByLClosePosition.sln
│ │ │ └── StartFormByLClosePosition.suo
│ │ ├── 01_diy
│ │ │ └── RegSoftByRegedit
│ │ │ ├── RegSoftByRegedit
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RegSoftByRegedit.csproj
│ │ │ ├── RegSoftByRegedit.sln
│ │ │ └── RegSoftByRegedit.suo
│ │ ├── 02
│ │ │ └── ControlFormStatus
│ │ │ ├── ControlFormStatus
│ │ │ │ ├── ControlFormStatus.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 关闭变色.jpg
│ │ │ │ ├── 关闭按钮.jpg
│ │ │ │ ├── 最大化变色.jpg
│ │ │ │ ├── 最大化按钮.jpg
│ │ │ │ ├── 最小化变色.jpg
│ │ │ │ ├── 最小化按钮.jpg
│ │ │ │ ├── 登录界面下面.PNG
│ │ │ │ └── 登录界面标题.PNG
│ │ │ ├── ControlFormStatus.sln
│ │ │ └── ControlFormStatus.suo
│ │ ├── 02_diy
│ │ │ └── ControlFormStatus
│ │ │ ├── ControlFormStatus
│ │ │ │ ├── ControlFormStatus.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 关闭变色.jpg
│ │ │ │ ├── 关闭按钮.jpg
│ │ │ │ ├── 最大化变色.jpg
│ │ │ │ ├── 最大化按钮.jpg
│ │ │ │ ├── 最小化变色.jpg
│ │ │ │ ├── 最小化按钮.jpg
│ │ │ │ ├── 登录界面下面.PNG
│ │ │ │ └── 登录界面标题.PNG
│ │ │ ├── ControlFormStatus.sln
│ │ │ └── ControlFormStatus.suo
│ │ ├── 03
│ │ │ └── MagnetismForm
│ │ │ ├── FrmClass.cs
│ │ │ ├── Frm_Libretto.cs
│ │ │ ├── Frm_Libretto.designer.cs
│ │ │ ├── Frm_Libretto.resx
│ │ │ ├── Frm_ListBox.cs
│ │ │ ├── Frm_ListBox.designer.cs
│ │ │ ├── Frm_ListBox.resx
│ │ │ ├── Frm_Play.cs
│ │ │ ├── Frm_Play.designer.cs
│ │ │ ├── Frm_Play.resx
│ │ │ ├── MagnetismForm.csproj
│ │ │ ├── MagnetismForm.sln
│ │ │ ├── MagnetismForm.suo
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 1.bmp
│ │ │ ├── 2.bmp
│ │ │ ├── 3.bmp
│ │ │ ├── 4.bmp
│ │ │ ├── 5.bmp
│ │ │ └── Close.bmp
│ │ ├── 03_diy
│ │ │ └── magnetism
│ │ │ ├── magnetism
│ │ │ │ ├── FrmClass.cs
│ │ │ │ ├── Frm_Libretto.cs
│ │ │ │ ├── Frm_Libretto.Designer.cs
│ │ │ │ ├── Frm_Libretto.resx
│ │ │ │ ├── Frm_ListBox.cs
│ │ │ │ ├── Frm_ListBox.designer.cs
│ │ │ │ ├── Frm_ListBox.resx
│ │ │ │ ├── Frm_Play.cs
│ │ │ │ ├── Frm_Play.Designer.cs
│ │ │ │ ├── Frm_Play.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 1.bmp
│ │ │ │ │ ├── 2.bmp
│ │ │ │ │ ├── 3.bmp
│ │ │ │ │ ├── 4.bmp
│ │ │ │ │ ├── 5.bmp
│ │ │ │ │ └── Close.bmp
│ │ │ │ ├── magnetism.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── magnetism.sln
│ │ │ └── magnetism.suo
│ │ ├── 04
│ │ │ └── MouseThroughForm
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MouseThroughForm.csproj
│ │ │ ├── MouseThroughForm.sln
│ │ │ ├── MouseThroughForm.suo
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── 04_diy
│ │ │ └── CalendarPenetrate
│ │ │ ├── CalendarPenetrate
│ │ │ │ ├── CalendarPenetrate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ └── 明日图标(2).ico
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CalendarPenetrate.sln
│ │ │ └── CalendarPenetrate.suo
│ │ ├── 05
│ │ │ └── WinCusSkin
│ │ │ ├── WinCusSkin
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── images
│ │ │ │ │ ├── blue
│ │ │ │ │ │ ├── background.gif
│ │ │ │ │ │ ├── bottom.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── left.png
│ │ │ │ │ │ ├── max_Normal.png
│ │ │ │ │ │ ├── max.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── min.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ └── top.png
│ │ │ │ │ ├── green
│ │ │ │ │ │ ├── background.gif
│ │ │ │ │ │ ├── bottom.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── left.png
│ │ │ │ │ │ ├── max_normal.png
│ │ │ │ │ │ ├── max.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── min.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ └── top.png
│ │ │ │ │ ├── purple
│ │ │ │ │ │ ├── background.gif
│ │ │ │ │ │ ├── bottom.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── left.PNG
│ │ │ │ │ │ ├── max_normal.png
│ │ │ │ │ │ ├── max.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── min.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ └── top.png
│ │ │ │ │ └── skin1
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── WinCusSkin.csproj
│ │ │ ├── WinCusSkin.sln
│ │ │ └── WinCusSkin.suo
│ │ └── 05_diy
│ │ └── WinCusSkin_Extend
│ │ ├── WinCusSkin
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── images
│ │ │ │ ├── blue
│ │ │ │ │ ├── background.gif
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── close2.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── left.png
│ │ │ │ │ ├── max2.png
│ │ │ │ │ ├── max_Normal2.png
│ │ │ │ │ ├── max_Normal.png
│ │ │ │ │ ├── max.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── min2.png
│ │ │ │ │ ├── min.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── top.png
│ │ │ │ ├── green
│ │ │ │ │ ├── background.gif
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── close2.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── left.png
│ │ │ │ │ ├── max2.png
│ │ │ │ │ ├── max_normal2.png
│ │ │ │ │ ├── max_normal.png
│ │ │ │ │ ├── max.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── min2.png
│ │ │ │ │ ├── min.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── top.png
│ │ │ │ ├── purple
│ │ │ │ │ ├── background.gif
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── close2.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── left.PNG
│ │ │ │ │ ├── max2.png
│ │ │ │ │ ├── max_normal2.png
│ │ │ │ │ ├── max_normal.png
│ │ │ │ │ ├── max.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── min2.png
│ │ │ │ │ ├── min.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── top.png
│ │ │ │ └── skin1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WinCusSkin.csproj
│ │ ├── WinCusSkin.sln
│ │ └── WinCusSkin.suo
│ ├── sl
│ │ ├── 8.01
│ │ │ └── 8.01.txt
│ │ ├── 8.02
│ │ │ └── 8.02.txt
│ │ ├── 8.03
│ │ │ └── 8.03.txt
│ │ ├── 8.04
│ │ │ └── ClickDemo
│ │ │ ├── ClickDemo
│ │ │ │ ├── ClickDemo.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ClickDemo.sln
│ │ │ └── ClickDemo.suo
│ │ ├── 8.05
│ │ │ └── LoadDemo
│ │ │ ├── LoadDemo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LoadDemo.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LoadDemo.sln
│ │ │ └── LoadDemo.suo
│ │ ├── 8.06
│ │ │ └── CloseForm
│ │ │ ├── CloseForm
│ │ │ │ ├── CloseForm.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CloseForm.sln
│ │ │ └── CloseForm.suo
│ │ ├── 8.07
│ │ │ └── 8.07.txt
│ │ ├── 8.08
│ │ │ └── MDIForm
│ │ │ ├── MDIForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form3.cs
│ │ │ │ ├── Form3.Designer.cs
│ │ │ │ ├── Form4.cs
│ │ │ │ ├── Form4.Designer.cs
│ │ │ │ ├── MDIForm.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MDIForm.sln
│ │ │ └── MDIForm.suo
│ │ ├── 8.09
│ │ │ └── JCForm
│ │ │ ├── JCForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form2.resx
│ │ │ │ ├── JCForm.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── JCForm.sln
│ │ │ └── JCForm.suo
│ │ └── 8.10
│ │ └── EditJCForm
│ │ ├── EditJCForm
│ │ │ ├── EditJCForm.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Form2.cs
│ │ │ ├── Form2.Designer.cs
│ │ │ ├── Form2.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── EditJCForm.sln
│ │ └── EditJCForm.suo
│ └── zmhh
│ ├── 01
│ │ └── LoadPosition
│ │ ├── LoadPosition
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── LoadPosition.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LoadPosition.sln
│ │ └── LoadPosition.suo
│ ├── 01_zmhh
│ │ └── LoadPosition
│ │ ├── LoadPosition
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── LoadPosition.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LoadPosition.sln
│ │ └── LoadPosition.suo
│ ├── 02
│ │ └── SetLocation
│ │ ├── SetLocation
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetLocation.csproj
│ │ ├── SetLocation.sln
│ │ └── SetLocation.suo
│ ├── 02_zmhh
│ │ └── SetLocation
│ │ ├── SetLocation
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetLocation.csproj
│ │ ├── SetLocation.sln
│ │ └── SetLocation.suo
│ ├── 03
│ │ └── AlwaysActiveWindows
│ │ ├── AlwaysActiveWindows
│ │ │ ├── AlwaysActiveWindows.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AlwaysActiveWindows.sln
│ │ └── AlwaysActiveWindows.suo
│ ├── 03_zmhh
│ │ └── AlwaysActiveWindows
│ │ ├── AlwaysActiveWindows
│ │ │ ├── AlwaysActiveWindows.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AlwaysActiveWindows.sln
│ │ └── AlwaysActiveWindows.suo
│ ├── 04
│ │ └── SetFormSizeByDeskSize
│ │ ├── SetFormSizeByDeskSize
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetFormSizeByDeskSize.csproj
│ │ ├── SetFormSizeByDeskSize.sln
│ │ └── SetFormSizeByDeskSize.suo
│ ├── 04_zmhh
│ │ └── ChangeFormSize
│ │ ├── ChangeFormSize
│ │ │ ├── ChangeFormSize.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ChangeFormSize.sln
│ │ └── ChangeFormSize.suo
│ ├── 05
│ │ └── AutoImageSizeByForm
│ │ ├── AutoImageSizeByForm
│ │ │ ├── AutoImageSizeByForm.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AutoImageSizeByForm.sln
│ │ └── AutoImageSizeByForm.suo
│ └── 05_zmhh
│ └── AutoImageSizeByForm
│ ├── AutoImageSizeByForm
│ │ ├── AutoImageSizeByForm.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── AutoImageSizeByForm.sln
│ └── AutoImageSizeByForm.suo
├── 09
│ ├── qjyy
│ │ ├── 01
│ │ │ └── OnlyDigit
│ │ │ ├── OnlyDigit
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── OnlyDigit.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── OnlyDigit.sln
│ │ │ └── OnlyDigit.suo
│ │ ├── 01_diy
│ │ │ └── OnlyLetter
│ │ │ ├── OnlyLetter
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── OnlyLetter.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── OnlyLetter.sln
│ │ │ └── OnlyLetter.suo
│ │ ├── 02
│ │ │ └── Selected
│ │ │ ├── Selected
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Selected.csproj
│ │ │ ├── Selected.sln
│ │ │ └── Selected.suo
│ │ ├── 02_diy
│ │ │ └── ModuleImpower
│ │ │ ├── ModuleImpower
│ │ │ │ ├── DataLogic.cs
│ │ │ │ ├── FormOperator.cs
│ │ │ │ ├── FormOperator.Designer.cs
│ │ │ │ ├── FormOperatorInput.cs
│ │ │ │ ├── FormOperatorInput.designer.cs
│ │ │ │ ├── FormOperatorInput.resx
│ │ │ │ ├── FormOperator.resx
│ │ │ │ ├── FormPurviewAssign.cs
│ │ │ │ ├── FormPurviewAssign.Designer.cs
│ │ │ │ ├── FormPurviewAssign.resx
│ │ │ │ ├── GlobalProperty.cs
│ │ │ │ ├── ModuleImpower.csproj
│ │ │ │ ├── Operator.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Useful.cs
│ │ │ ├── ModuleImpower.sln
│ │ │ └── ModuleImpower.suo
│ │ ├── 03
│ │ │ └── DisplayNumber
│ │ │ ├── DisplayNumber
│ │ │ │ ├── DisplayNumber.csproj
│ │ │ │ ├── DisplayNumber.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Resources
│ │ │ │ │ ├── 数字编号.bmp
│ │ │ │ │ └── 项目编号.bmp
│ │ │ │ └── RichTextBoxEx.cs
│ │ │ ├── DisplayNumber.sln
│ │ │ └── DisplayNumber.suo
│ │ ├── 03_diy
│ │ │ └── PlantTextAlignMode
│ │ │ ├── PlantTextAlignMode
│ │ │ │ ├── PlantTextAlignMode.cs
│ │ │ │ ├── PlantTextAlignMode.csproj
│ │ │ │ ├── PlantTextAlignMode.Designer.cs
│ │ │ │ ├── PlantTextAlignMode.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 右对齐.bmp
│ │ │ │ ├── 居中对齐.bmp
│ │ │ │ └── 左对齐.bmp
│ │ │ ├── PlantTextAlignMode.sln
│ │ │ └── PlantTextAlignMode.suo
│ │ ├── 04
│ │ │ └── HistoryMenu
│ │ │ ├── HistoryMenu
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── HistoryMenu.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── HistoryMenu.sln
│ │ │ └── HistoryMenu.suo
│ │ ├── 04_diy
│ │ │ └── HideMenu
│ │ │ ├── HideMenu
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MayStretchMenu.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MayStretchMenu.sln
│ │ │ └── MayStretchMenu.suo
│ │ ├── 05
│ │ │ └── LikesXP
│ │ │ ├── LikesXP
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 1.bmp
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── 2.jpg
│ │ │ │ │ ├── 3.jpg
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── 5.jpg
│ │ │ │ │ ├── 大背景.jpg
│ │ │ │ │ ├── 朝上按钮.jpg
│ │ │ │ │ └── 朝下按钮.jpg
│ │ │ │ ├── LikesXP.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LikesXP.sln
│ │ │ └── LikesXP.suo
│ │ └── 05_diy
│ │ └── Navigation
│ │ ├── Navigation
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Navigation.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Navigation.sln
│ │ └── Navigation.suo
│ ├── sl
│ │ ├── 9.01
│ │ │ └── 9.01.txt
│ │ ├── 9.02
│ │ │ └── 9.02.txt
│ │ ├── 9.03
│ │ │ └── UseBtnClick
│ │ │ ├── UseBtnClick
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseBtnClick.csproj
│ │ │ ├── UseBtnClick.sln
│ │ │ └── UseBtnClick.suo
│ │ ├── 9.04
│ │ │ └── UseAcceptButton
│ │ │ ├── UseAcceptButton
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseAcceptButton.csproj
│ │ │ ├── UseAcceptButton.sln
│ │ │ └── UseAcceptButton.suo
│ │ ├── 9.05
│ │ │ └── TXTReadOnly
│ │ │ ├── TXTReadOnly
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTReadOnly.csproj
│ │ │ ├── TXTReadOnly.sln
│ │ │ └── TXTReadOnly.suo
│ │ ├── 9.06
│ │ │ └── TXTPwdChar
│ │ │ ├── TXTPwdChar
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTPwdChar.csproj
│ │ │ ├── TXTPwdChar.sln
│ │ │ └── TXTPwdChar.suo
│ │ ├── 9.07
│ │ │ └── TXTMult
│ │ │ ├── TXTMult
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTMult.csproj
│ │ │ ├── TXTMult.sln
│ │ │ └── TXTMult.suo
│ │ ├── 9.08
│ │ │ └── TXTChanage
│ │ │ ├── TXTChanage
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTChanage.csproj
│ │ │ ├── TXTChanage.sln
│ │ │ └── TXTChanage.suo
│ │ ├── 9.09
│ │ │ └── RTXTScroll
│ │ │ ├── RTXTScroll
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RTXTScroll.csproj
│ │ │ ├── RTXTScroll.sln
│ │ │ └── RTXTScroll.suo
│ │ ├── 9.10
│ │ │ └── RTXTFont
│ │ │ ├── RTXTFont
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RTXTFont.csproj
│ │ │ ├── RTXTFont.sln
│ │ │ └── RTXTFont.suo
│ │ ├── 9.11
│ │ │ └── RTXTURL
│ │ │ ├── RTXTURL
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RTXTURL.csproj
│ │ │ ├── RTXTURL.sln
│ │ │ └── RTXTURL.suo
│ │ ├── 9.12
│ │ │ └── CBoxSelect
│ │ │ ├── CBoxSelect
│ │ │ │ ├── CBoxSelect.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CBoxSelect.sln
│ │ │ └── CBoxSelect.suo
│ │ ├── 9.13
│ │ │ └── CBoxChanged
│ │ │ ├── CBoxChanged
│ │ │ │ ├── CBoxChanged.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CBoxChanged.sln
│ │ │ └── CBoxChanged.suo
│ │ ├── 9.14
│ │ │ └── CKBoxCheck
│ │ │ ├── CKBoxCheck
│ │ │ │ ├── CKBoxCheck.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CKBoxCheck.sln
│ │ │ └── CKBoxCheck.suo
│ │ ├── 9.15
│ │ │ └── CKBoxChanged
│ │ │ ├── CKBoxChanged
│ │ │ │ ├── CKBoxChanged.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CKBoxChanged.sln
│ │ │ └── CKBoxChanged.suo
│ │ ├── 9.16
│ │ │ └── RBtnCheck
│ │ │ ├── RBtnCheck
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RBtnCheck.csproj
│ │ │ ├── RBtnCheck.sln
│ │ │ └── RBtnCheck.suo
│ │ ├── 9.17
│ │ │ └── RBtnChange
│ │ │ ├── RBtnChange
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RBtnChange.csproj
│ │ │ ├── RBtnChange.sln
│ │ │ └── RBtnChange.suo
│ │ ├── 9.18
│ │ │ └── NUDownNum
│ │ │ ├── NUDownNum
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NUDownNum.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NUDownNum.sln
│ │ │ └── NUDownNum.suo
│ │ ├── 9.19
│ │ │ └── NUDownStyle
│ │ │ ├── NUDownStyle
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NUDownStyle.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NUDownStyle.sln
│ │ │ └── NUDownStyle.suo
│ │ ├── 9.20
│ │ │ └── LBoxAddAndRemove
│ │ │ ├── LBoxAddAndRemove
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LBoxAddAndRemove.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LBoxAddAndRemove.sln
│ │ │ └── LBoxAddAndRemove.suo
│ │ ├── 9.21
│ │ │ └── LBoxSelectMult
│ │ │ ├── LBoxSelectMult
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LBoxSelectMult.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LBoxSelectMult.sln
│ │ │ └── LBoxSelectMult.suo
│ │ ├── 9.22
│ │ │ └── UsePanel
│ │ │ ├── UsePanel
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePanel.csproj
│ │ │ ├── UsePanel.sln
│ │ │ └── UsePanel.suo
│ │ ├── 9.23
│ │ │ └── UseGroupBox
│ │ │ ├── UseGroupBox
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseGroupBox.csproj
│ │ │ ├── UseGroupBox.sln
│ │ │ └── UseGroupBox.suo
│ │ ├── 9.24
│ │ │ └── TCtrlStyle
│ │ │ ├── TCtrlStyle
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TCtrlStyle.csproj
│ │ │ ├── TCtrlStyle.sln
│ │ │ └── TCtrlStyle.suo
│ │ ├── 9.25
│ │ │ └── TCtrlAddPage
│ │ │ ├── TCtrlAddPage
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TCtrlAddPage.csproj
│ │ │ ├── TCtrlAddPage.sln
│ │ │ └── TCtrlAddPage.suo
│ │ ├── 9.26
│ │ │ └── TCtrlRemovePage
│ │ │ ├── TCtrlRemovePage
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TCtrlRemovePage.csproj
│ │ │ ├── TCtrlRemovePage.sln
│ │ │ └── TCtrlRemovePage.suo
│ │ ├── 9.27
│ │ │ └── 9.27.txt
│ │ ├── 9.28
│ │ │ └── UseOpenDialog
│ │ │ ├── UseOpenDialog
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseOpenDialog.csproj
│ │ │ ├── UseOpenDialog.sln
│ │ │ └── UseOpenDialog.suo
│ │ ├── 9.29
│ │ │ └── UseSaveDialog
│ │ │ ├── UseSaveDialog
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseSaveDialog.csproj
│ │ │ ├── UseSaveDialog.sln
│ │ │ └── UseSaveDialog.suo
│ │ ├── 9.30
│ │ │ └── UseBrowserDialog
│ │ │ ├── UseBrowserDialog
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseBrowserDialog.csproj
│ │ │ ├── UseBrowserDialog.sln
│ │ │ └── UseBrowserDialog.suo
│ │ ├── 9.31
│ │ │ └── UseMenu
│ │ │ ├── UseMenu
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseMenu.csproj
│ │ │ ├── UseMenu.sln
│ │ │ └── UseMenu.suo
│ │ ├── 9.32
│ │ │ └── UseTool
│ │ │ ├── UseTool
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTool.csproj
│ │ │ ├── UseTool.sln
│ │ │ └── UseTool.suo
│ │ └── 9.33
│ │ └── UseStatus
│ │ ├── UseStatus
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseStatus.csproj
│ │ ├── UseStatus.sln
│ │ └── UseStatus.suo
│ └── zmhh
│ ├── 01
│ │ └── PicturesInComboBox
│ │ ├── PicturesInComboBox
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── PicturesInComboBox.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── a.bmp
│ │ │ ├── b.bmp
│ │ │ ├── c.bmp
│ │ │ └── d.bmp
│ │ ├── PicturesInComboBox.sln
│ │ └── PicturesInComboBox.suo
│ ├── 01_zmhh
│ │ └── PicturesInComboBox
│ │ ├── PicturesInComboBox
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── PicturesInComboBox.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── a.bmp
│ │ │ ├── b.bmp
│ │ │ ├── c.bmp
│ │ │ └── d.bmp
│ │ ├── PicturesInComboBox.sln
│ │ └── PicturesInComboBox.suo
│ ├── 02
│ │ └── ComboBoxFind
│ │ ├── ComboBoxFind
│ │ │ ├── ComboBoxFind.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ComboBoxFind.sln
│ │ └── ComboBoxFind.suo
│ ├── 02_zmhh
│ │ └── ComboBoxFind
│ │ ├── ComboBoxFind
│ │ │ ├── ComboBoxFind.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ComboBoxFind.sln
│ │ └── ComboBoxFind.suo
│ ├── 03
│ │ └── FindKey
│ │ ├── FindKey
│ │ │ ├── FindKey.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindKey.sln
│ │ └── FindKey.suo
│ ├── 03_zmhh
│ │ └── FindKey
│ │ ├── FindKey
│ │ │ ├── FindKey.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindKey.sln
│ │ └── FindKey.suo
│ ├── 04
│ │ └── DataSort
│ │ ├── DataSort
│ │ │ ├── DataSort.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataSort.sln
│ │ └── DataSort.suo
│ ├── 04_zmhh
│ │ └── DataSort
│ │ ├── DataSort
│ │ │ ├── DataSort.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataSort.sln
│ │ └── DataSort.suo
│ ├── 05
│ │ └── MessageTool
│ │ ├── MessageTool
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MessageTool.csproj
│ │ │ ├── MessageTool.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── MessageTool.sln
│ │ └── MessageTool.suo
│ └── 05_zmhh
│ └── BackGroundTool
│ ├── BackGroundTool
│ │ ├── BackGroundTool.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Resources
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ └── 9.jpg
│ ├── BackGroundTool.sln
│ └── BackGroundTool.suo
├── 10
│ ├── qjyy
│ │ ├── 01
│ │ │ └── Getdirectory
│ │ │ ├── Getdirectory
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Getdirectory.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Getdirectory.sln
│ │ │ └── Getdirectory.suo
│ │ ├── 01_diy
│ │ │ └── GetRegedit
│ │ │ ├── GetRegedit
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── GetRegedit.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetRegedit.sln
│ │ │ └── GetRegedit.suo
│ │ ├── 02
│ │ │ └── DisplayMenu
│ │ │ ├── DisplayMenu
│ │ │ │ ├── 1.bmp
│ │ │ │ ├── DisplayMenu.csproj
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form2.resx
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DisplayMenu.sln
│ │ │ └── DisplayMenu.suo
│ │ ├── 02_diy
│ │ │ └── DataBaseToTreeView
│ │ │ ├── DataBaseToTreeView
│ │ │ │ ├── DataBaseToTreeView.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DataBaseToTreeView.sln
│ │ │ └── DataBaseToTreeView.suo
│ │ ├── 03
│ │ │ └── PowerCalendar
│ │ │ ├── PowerCalendar
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PowerCalendar.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PowerCalendar.sln
│ │ │ └── PowerCalendar.suo
│ │ ├── 03_diy
│ │ │ └── TimeTask
│ │ │ ├── TimeTask
│ │ │ │ ├── DataTier.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── task.cs
│ │ │ │ └── TimeTask.csproj
│ │ │ ├── TimeTask.sln
│ │ │ └── TimeTask.suo
│ │ ├── 04
│ │ │ └── ClockAlarm
│ │ │ ├── ClockAlarm
│ │ │ │ ├── ClockAlarm.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ClockAlarm.sln
│ │ │ └── ClockAlarm.suo
│ │ ├── 04_diy
│ │ │ └── TimeNow
│ │ │ ├── TimeNow
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TimeNow.csproj
│ │ │ ├── TimeNow.sln
│ │ │ └── TimeNow.suo
│ │ ├── 05
│ │ │ └── ShowDialogPBar
│ │ │ ├── ShowDialogPBar
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Frm_Plan.cs
│ │ │ │ ├── Frm_Plan.designer.cs
│ │ │ │ ├── Frm_Plan.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowDialogPBar.csproj
│ │ │ ├── ShowDialogPBar.sln
│ │ │ └── ShowDialogPBar.suo
│ │ └── 05_diy
│ │ └── TrackBarStraightForwardUtility
│ │ ├── TrackBarStraightForwardUtility
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── TrackBarStraightForwardUtility.csproj
│ │ ├── TrackBarStraightForwardUtility.sln
│ │ └── TrackBarStraightForwardUtility.suo
│ ├── sl
│ │ ├── 10.01
│ │ │ └── AddImages
│ │ │ ├── AddImages
│ │ │ │ ├── AddImages.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddImages.sln
│ │ │ └── AddImages.suo
│ │ ├── 10.02
│ │ │ └── RemoveImages
│ │ │ ├── RemoveImages
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RemoveImages.csproj
│ │ │ ├── RemoveImages.sln
│ │ │ └── RemoveImages.suo
│ │ ├── 10.03
│ │ │ └── LVAddItems
│ │ │ ├── LVAddItems
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVAddItems.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVAddItems.sln
│ │ │ └── LVAddItems.suo
│ │ ├── 10.04
│ │ │ └── LVRemoveItems
│ │ │ ├── LVRemoveItems
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVRemoveItems.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVRemoveItems.sln
│ │ │ └── LVRemoveItems.suo
│ │ ├── 10.05
│ │ │ └── LVSelectItem
│ │ │ ├── LVSelectItem
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVSelectItem.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVSelectItem.sln
│ │ │ └── LVSelectItem.suo
│ │ ├── 10.06
│ │ │ └── LVSetItemIcon
│ │ │ ├── LVSetItemIcon
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVSetItemIcon.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVSetItemIcon.sln
│ │ │ └── LVSetItemIcon.suo
│ │ ├── 10.07
│ │ │ └── LVSetPPView
│ │ │ ├── LVSetPPView
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVSetPPView.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVSetPPView.sln
│ │ │ └── LVSetPPView.suo
│ │ ├── 10.08
│ │ │ └── TVAddNodes
│ │ │ ├── TVAddNodes
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVAddNodes.csproj
│ │ │ ├── TVAddNodes.sln
│ │ │ └── TVAddNodes.suo
│ │ ├── 10.09
│ │ │ └── TVRemoveNodes
│ │ │ ├── TVRemoveNodes
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVRemoveNodes.csproj
│ │ │ ├── TVRemoveNodes.sln
│ │ │ └── TVRemoveNodes.suo
│ │ ├── 10.10
│ │ │ └── TVSelectNode
│ │ │ ├── TVSelectNode
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVSelectNode.csproj
│ │ │ ├── TVSelectNode.sln
│ │ │ └── TVSelectNode.suo
│ │ ├── 10.11
│ │ │ └── 10.11.txt
│ │ ├── 10.12
│ │ │ └── 10.12.txt
│ │ ├── 10.13
│ │ │ └── TVSetNodeIcon
│ │ │ ├── TVSetNodeIcon
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVSetNodeIcon.csproj
│ │ │ ├── TVSetNodeIcon.sln
│ │ │ └── TVSetNodeIcon.suo
│ │ ├── 10.14
│ │ │ └── DTPickShowTime
│ │ │ ├── DTPickShowTime
│ │ │ │ ├── DTPickShowTime.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DTPickShowTime.sln
│ │ │ └── DTPickShowTime.suo
│ │ ├── 10.15
│ │ │ └── DTPickShowDate
│ │ │ ├── DTPickShowDate
│ │ │ │ ├── DTPickShowDate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DTPickShowDate.sln
│ │ │ └── DTPickShowDate.suo
│ │ ├── 10.16
│ │ │ └── DTPickGetDate
│ │ │ ├── DTPickGetDate
│ │ │ │ ├── DTPickGetDate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DTPickGetDate.sln
│ │ │ └── DTPickGetDate.suo
│ │ ├── 10.17
│ │ │ └── MCalendarBoldDate
│ │ │ ├── MCalendarBoldDate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MCalendarBoldDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MCalendarBoldDate.sln
│ │ │ └── MCalendarBoldDate.suo
│ │ ├── 10.18
│ │ │ └── MCalendarSelectDate
│ │ │ ├── MCalendarSelectDate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MCalendarSelectDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MCalendarSelectDate.sln
│ │ │ └── MCalendarSelectDate.suo
│ │ ├── 10.19
│ │ │ └── EProValTXT
│ │ │ ├── EProValTXT
│ │ │ │ ├── EProValTXT.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── EProValTXT.sln
│ │ │ └── EProValTXT.suo
│ │ ├── 10.20
│ │ │ └── HProUseHelp
│ │ │ ├── HProUseHelp
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── HProUseHelp.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── HProUseHelp.sln
│ │ │ └── HProUseHelp.suo
│ │ ├── 10.21
│ │ │ └── UseTimer
│ │ │ ├── UseTimer
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTimer.csproj
│ │ │ ├── UseTimer.sln
│ │ │ └── UseTimer.suo
│ │ └── 10.22
│ │ └── ShowPBar
│ │ ├── ShowPBar
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ShowPBar.csproj
│ │ ├── ShowPBar.sln
│ │ └── ShowPBar.suo
│ └── zmhh
│ ├── 01
│ │ └── DragViewTerm
│ │ ├── DragViewTerm
│ │ │ ├── DragViewTerm.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DragViewTerm.sln
│ │ └── DragViewTerm.suo
│ ├── 01_zmhh
│ │ └── DragViewTerm
│ │ ├── DragViewTerm
│ │ │ ├── DragViewTerm.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DragViewTerm.sln
│ │ └── DragViewTerm.suo
│ ├── 02
│ │ └── CheckBoxInListView
│ │ ├── CheckBoxInListView
│ │ │ ├── CheckBoxInListView.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CheckBoxInListView.sln
│ │ └── CheckBoxInListView.suo
│ ├── 02_zmhh
│ │ └── CheckBoxInListView
│ │ ├── CheckBoxInListView
│ │ │ ├── CheckBoxInListView.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CheckBoxInListView.sln
│ │ └── CheckBoxInListView.suo
│ ├── 03
│ │ └── TxtValidate
│ │ ├── TxtValidate
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TxtValidate.csproj
│ │ │ └── TxtValidate.csproj.user
│ │ ├── TxtValidate.sln
│ │ └── TxtValidate.suo
│ ├── 03_zmhh
│ │ └── TxtValidate
│ │ ├── TxtValidate
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TxtValidate.csproj
│ │ │ └── TxtValidate.csproj.user
│ │ ├── TxtValidate.sln
│ │ └── TxtValidate.suo
│ ├── 04
│ │ └── UseTimer
│ │ ├── UseTimer
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseTimer.csproj
│ │ ├── UseTimer.sln
│ │ └── UseTimer.suo
│ ├── 04_zmhh
│ │ └── MoveForm
│ │ ├── MoveForm
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MoveForm.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ └── 星星图.jpg
│ │ ├── MoveForm.sln
│ │ └── MoveForm.suo
│ ├── 05
│ │ └── InputText
│ │ ├── InputText
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── InputText.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── InputText.sln
│ │ └── InputText.suo
│ └── 05_zmhh
│ └── InputText
│ ├── InputText
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── InputText.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── InputText.sln
│ └── InputText.suo
├── 11
│ ├── qjyy
│ │ ├── 01
│ │ │ └── UseInsertSelect
│ │ │ ├── UseInsertSelect
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseInsertSelect.csproj
│ │ │ ├── UseInsertSelect.sln
│ │ │ └── UseInsertSelect.suo
│ │ ├── 01_diy
│ │ │ └── UseTransCommitData
│ │ │ ├── UseTransCommitData
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTransCommitData.csproj
│ │ │ ├── UseTransCommitData.sln
│ │ │ └── UseTransCommitData.suo
│ │ ├── 02
│ │ │ └── UseUpdate
│ │ │ ├── UseUpdate
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseUpdate.csproj
│ │ │ ├── UseUpdate.sln
│ │ │ └── UseUpdate.suo
│ │ ├── 02_diy
│ │ │ └── EditByCBuilderAndUpdate
│ │ │ ├── EditByCBuilderAndUpdate
│ │ │ │ ├── EditByCBuilderAndUpdate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── EditByCBuilderAndUpdate.sln
│ │ │ └── EditByCBuilderAndUpdate.suo
│ │ ├── 03
│ │ │ └── UseSelect
│ │ │ ├── UseSelect
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseSelect.csproj
│ │ │ ├── UseSelect.sln
│ │ │ └── UseSelect.suo
│ │ ├── 03_diy
│ │ │ └── UsePagination
│ │ │ ├── UsePagination
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePagination.csproj
│ │ │ ├── UsePagination.sln
│ │ │ └── UsePagination.suo
│ │ ├── 04
│ │ │ └── SaveBinary
│ │ │ ├── SaveBinary
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SaveBinary.csproj
│ │ │ ├── SaveBinary.sln
│ │ │ └── SaveBinary.suo
│ │ ├── 04_diy
│ │ │ └── UseFilePath
│ │ │ ├── UseFilePath
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseFilePath.csproj
│ │ │ ├── UseFilePath.sln
│ │ │ └── UseFilePath.suo
│ │ ├── 05
│ │ │ └── AutoID
│ │ │ ├── AutoID
│ │ │ │ ├── AutoID.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AutoID.sln
│ │ │ └── AutoID.suo
│ │ └── 05_diy
│ │ └── AddByProc
│ │ ├── AddByProc
│ │ │ ├── AddByProc.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddByProc.sln
│ │ └── AddByProc.suo
│ ├── sl
│ │ ├── 11.01
│ │ │ └── ConSQL
│ │ │ ├── ConSQL
│ │ │ │ ├── ConSQL.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ConSQL.sln
│ │ │ └── ConSQL.suo
│ │ ├── 11.02
│ │ │ └── CloseSQL
│ │ │ ├── CloseSQL
│ │ │ │ ├── CloseSQL.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CloseSQL.sln
│ │ │ └── CloseSQL.suo
│ │ ├── 11.03
│ │ │ └── SqlCmdSelect
│ │ │ ├── SqlCmdSelect
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlCmdSelect.csproj
│ │ │ ├── SqlCmdSelect.sln
│ │ │ └── SqlCmdSelect.suo
│ │ ├── 11.04
│ │ │ └── SqlCmdENQuery
│ │ │ ├── SqlCmdENQuery
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlCmdENQuery.csproj
│ │ │ ├── SqlCmdENQuery.sln
│ │ │ └── SqlCmdENQuery.suo
│ │ ├── 11.05
│ │ │ └── SqlCmdEReader
│ │ │ ├── SqlCmdEReader
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlCmdEReader.csproj
│ │ │ ├── SqlCmdEReader.sln
│ │ │ └── SqlCmdEReader.suo
│ │ ├── 11.06
│ │ │ └── 11.06.txt
│ │ ├── 11.07
│ │ │ └── SqlReaderHasRows
│ │ │ ├── SqlReaderHasRows
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlReaderHasRows.csproj
│ │ │ ├── SqlReaderHasRows.sln
│ │ │ └── SqlReaderHasRows.suo
│ │ ├── 11.08
│ │ │ └── 11.08.txt
│ │ ├── 11.09
│ │ │ └── FillDataSet
│ │ │ ├── FillDataSet
│ │ │ │ ├── FillDataSet.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FillDataSet.sln
│ │ │ └── FillDataSet.suo
│ │ ├── 11.10
│ │ │ └── UpdateDataSet
│ │ │ ├── UpdateDataSet
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UpdateDataSet.csproj
│ │ │ ├── UpdateDataSet.sln
│ │ │ └── UpdateDataSet.suo
│ │ ├── 11.11
│ │ │ └── 11.11.txt
│ │ ├── 11.12
│ │ │ └── MergeDataSet
│ │ │ ├── MergeDataSet
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MergeDataSet.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MergeDataSet.sln
│ │ │ └── MergeDataSet.suo
│ │ └── 11.13
│ │ └── CopyDataSet
│ │ ├── CopyDataSet
│ │ │ ├── CopyDataSet.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CopyDataSet.sln
│ │ └── CopyDataSet.suo
│ └── zmhh
│ ├── 01
│ │ └── UsePassword
│ │ ├── UsePassword
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UsePassword.csproj
│ │ ├── UsePassword.sln
│ │ └── UsePassword.suo
│ ├── 01_zmhh
│ │ └── ShareAccess
│ │ ├── ShareAccess
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ShareAccess.csproj
│ │ ├── ShareAccess.sln
│ │ └── ShareAccess.suo
│ ├── 02
│ │ └── ReadTEXT
│ │ ├── ReadTEXT
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReadTEXT.csproj
│ │ ├── ReadTEXT.sln
│ │ └── ReadTEXT.suo
│ ├── 02_zmhh
│ │ └── ConnectToExcel
│ │ ├── ConnectToExcel
│ │ │ ├── ConnectToExcel.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ConnectToExcel.sln
│ │ └── ConnectToExcel.suo
│ ├── 03
│ │ └── GetConfiguration
│ │ ├── GetConfiguration
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetConfiguration.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetConfiguration.sln
│ │ └── GetConfiguration.suo
│ ├── 03_zmhh
│ │ └── GetViewStruct
│ │ ├── GetViewStruct
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetViewStruct.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetViewStruct.sln
│ │ └── GetViewStruct.suo
│ ├── 04
│ │ └── BackUpDataBase
│ │ ├── BackUpDataBase
│ │ │ ├── BackUpDataBase.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BackUpDataBase.sln
│ │ └── BackUpDataBase.suo
│ ├── 04_zmhh
│ │ └── DRSQL2005
│ │ ├── DRSQL2005
│ │ │ ├── DRSQL2005.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DRSQL2005.sln
│ │ └── DRSQL2005.suo
│ ├── 05
│ │ └── ExistSQLServer
│ │ ├── ExistSQLServer
│ │ │ ├── ExistSQLServer.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ExistSQLServer.sln
│ │ └── ExistSQLServer.suo
│ └── 05_zmhh
│ └── ExistSQLServer
│ ├── ExistSQLServer
│ │ ├── ExistSQLServer.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ExistSQLServer.sln
│ └── ExistSQLServer.suo
├── 12
│ ├── qjyy
│ │ ├── 01
│ │ │ └── CellValidate
│ │ │ ├── CellValidate
│ │ │ │ ├── CellValidate.csproj
│ │ │ │ ├── CellValidate.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CellValidate.sln
│ │ │ └── CellValidate.suo
│ │ ├── 01_diy
│ │ │ └── CellValidate
│ │ │ ├── CellValidate
│ │ │ │ ├── CellValidate.csproj
│ │ │ │ ├── CellValidate.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CellValidate.sln
│ │ │ └── CellValidate.suo
│ │ ├── 02
│ │ │ └── SumAndAverage
│ │ │ ├── SumAndAverage
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SumAndAverage.csproj
│ │ │ ├── SumAndAverage.sln
│ │ │ └── SumAndAverage.suo
│ │ ├── 02_diy
│ │ │ └── SumAndAverage
│ │ │ ├── SumAndAverage
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SumAndAverage.csproj
│ │ │ ├── SumAndAverage.sln
│ │ │ └── SumAndAverage.suo
│ │ ├── 03
│ │ │ └── CrossAnalyse
│ │ │ ├── CrossAnalyse
│ │ │ │ ├── CrossAnalyse.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CrossAnalyse.sln
│ │ │ └── CrossAnalyse.suo
│ │ ├── 03_diy
│ │ │ └── AnyYGBirthdayByCross
│ │ │ ├── AnyYGBirthdayByCross
│ │ │ │ ├── AnyYGBirthdayByCross.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AnyYGBirthdayByCross.sln
│ │ │ └── AnyYGBirthdayByCross.suo
│ │ ├── 04
│ │ │ └── GridToWord
│ │ │ ├── GridToWord
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GridToWord.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GridToWord.sln
│ │ │ └── GridToWord.suo
│ │ ├── 04_diy
│ │ │ └── GridToExcel
│ │ │ ├── GridToExcel
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── GridToExcel.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GridToExcel.sln
│ │ │ └── GridToExcel.suo
│ │ ├── 05
│ │ │ └── UsePagination
│ │ │ ├── UsePagination
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePagination.csproj
│ │ │ ├── UsePagination.sln
│ │ │ └── UsePagination.suo
│ │ └── 05_diy
│ │ └── UsePagination
│ │ ├── UsePagination
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UsePagination.csproj
│ │ ├── UsePagination.sln
│ │ └── UsePagination.suo
│ ├── sl
│ │ ├── 12.01
│ │ │ └── ShowData
│ │ │ ├── ShowData
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowData.csproj
│ │ │ ├── ShowData.sln
│ │ │ └── ShowData.suo
│ │ ├── 12.02
│ │ │ └── GetCellInfo
│ │ │ ├── GetCellInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── GetCellInfo.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetCellInfo.sln
│ │ │ └── GetCellInfo.suo
│ │ ├── 12.03
│ │ │ └── DGVUpdateData
│ │ │ ├── DGVUpdateData
│ │ │ │ ├── DGVUpdateData.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DGVUpdateData.sln
│ │ │ └── DGVUpdateData.suo
│ │ ├── 12.04
│ │ │ └── 12.04.txt
│ │ ├── 12.05
│ │ │ └── DGVChanageColor
│ │ │ ├── DGVChanageColor
│ │ │ │ ├── DGVChanageColor.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DGVChanageColor.sln
│ │ │ └── DGVChanageColor.suo
│ │ ├── 12.06
│ │ │ └── 12.06.txt
│ │ ├── 12.07
│ │ │ └── DGVNotSort
│ │ │ ├── DGVNotSort
│ │ │ │ ├── DGVNotSort.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DGVNotSort.sln
│ │ │ └── DGVNotSort.suo
│ │ └── 12.08
│ │ └── DGVCombinCell
│ │ ├── DGVCombinCell
│ │ │ ├── DGVCombinCell.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DGVCombinCell.sln
│ │ └── DGVCombinCell.suo
│ └── zmhh
│ ├── 01
│ │ └── GridStyle
│ │ ├── GridStyle
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GridStyle.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GridStyle.sln
│ │ └── GridStyle.suo
│ ├── 01_zmhh
│ │ └── GridStyle
│ │ ├── GridStyle
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GridStyle.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Student.cs
│ │ ├── GridStyle.sln
│ │ └── GridStyle.suo
│ ├── 02
│ │ └── DataFormat
│ │ ├── DataFormat
│ │ │ ├── DataFormat.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataFormat.sln
│ │ └── DataFormat.suo
│ ├── 02_zmhh
│ │ └── DataFormat
│ │ ├── DataFormat
│ │ │ ├── DataFormat.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataFormat.sln
│ │ └── DataFormat.suo
│ ├── 03
│ │ └── CellAlignment
│ │ ├── CellAlignment
│ │ │ ├── CellAlignment.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CellAlignment.sln
│ │ └── CellAlignment.suo
│ ├── 03_zmhh
│ │ └── CellAlignment
│ │ ├── CellAlignment
│ │ │ ├── CellAlignment.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CellAlignment.sln
│ │ └── CellAlignment.suo
│ ├── 04
│ │ └── DropDownList
│ │ ├── DropDownList
│ │ │ ├── DropDownList.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DropDownList.sln
│ │ └── DropDownList.suo
│ ├── 04_zmhh
│ │ └── DropDownList
│ │ ├── DropDownList
│ │ │ ├── DropDownList.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DropDownList.sln
│ │ └── DropDownList.suo
│ ├── 05
│ │ └── CheckBoxInDataGridView
│ │ ├── CheckBoxInDataGridView
│ │ │ ├── CheckBoxInDataGridView.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CheckBoxInDataGridView.sln
│ │ └── CheckBoxInDataGridView.suo
│ └── 05_zmhh
│ └── CheckBoxInDataGridView
│ ├── CheckBoxInDataGridView
│ │ ├── CheckBoxInDataGridView.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Fruit.cs
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── CheckBoxInDataGridView.sln
│ └── CheckBoxInDataGridView.suo
├── 13
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ShowBusStation
│ │ │ ├── ShowBusStation
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowBusStation.csproj
│ │ │ ├── ShowBusStation.sln
│ │ │ └── ShowBusStation.suo
│ │ ├── 01_diy
│ │ │ └── ShowBanks
│ │ │ ├── ShowBanks
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowBanks.csproj
│ │ │ ├── ShowBanks.sln
│ │ │ └── ShowBanks.suo
│ │ ├── 02
│ │ │ └── DynamicLetter
│ │ │ ├── DynamicLetter
│ │ │ │ ├── DynamicLetter.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DynamicLetter.sln
│ │ │ └── DynamicLetter.suo
│ │ ├── 02_diy
│ │ │ └── ReverseOrder
│ │ │ ├── ReverseOrder
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ReverseOrder.csproj
│ │ │ ├── ReverseOrder.sln
│ │ │ └── ReverseOrder.suo
│ │ ├── 03
│ │ │ └── BranchMeans
│ │ │ ├── BranchMeans
│ │ │ │ ├── Account.cs
│ │ │ │ ├── BranchMeans.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 0_1.png
│ │ │ │ │ ├── 0.png
│ │ │ │ │ ├── 1_1.png
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2_1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ ├── 3_1.png
│ │ │ │ │ ├── 3.png
│ │ │ │ │ ├── 4_1.png
│ │ │ │ │ ├── 4.png
│ │ │ │ │ ├── 5_1.png
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 6_1.png
│ │ │ │ │ ├── 6.png
│ │ │ │ │ ├── 7_1.png
│ │ │ │ │ ├── 7.png
│ │ │ │ │ ├── 8_1.png
│ │ │ │ │ ├── 8.png
│ │ │ │ │ ├── 9_1.png
│ │ │ │ │ ├── 9.png
│ │ │ │ │ ├── Add1.png
│ │ │ │ │ ├── Add.png
│ │ │ │ │ ├── Amound1.png
│ │ │ │ │ ├── Amound.png
│ │ │ │ │ ├── back1.png
│ │ │ │ │ ├── back.png
│ │ │ │ │ ├── Bear1.png
│ │ │ │ │ ├── Bear.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── c1.png
│ │ │ │ │ ├── ce1.png
│ │ │ │ │ ├── ce.png
│ │ │ │ │ ├── Close.jpg
│ │ │ │ │ ├── c.png
│ │ │ │ │ ├── Decr1.png
│ │ │ │ │ ├── Decr.png
│ │ │ │ │ ├── Deno1.png
│ │ │ │ │ ├── Deno.png
│ │ │ │ │ ├── Dot1.png
│ │ │ │ │ ├── Dot.png
│ │ │ │ │ ├── Humd1.png
│ │ │ │ │ ├── Hund.png
│ │ │ │ │ ├── Remove1.png
│ │ │ │ │ ├── Remove.png
│ │ │ │ │ ├── Ride1.png
│ │ │ │ │ ├── Ride.png
│ │ │ │ │ ├── sqrt1.png
│ │ │ │ │ └── sqrt.png
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── BranchMeans.sln
│ │ │ └── BranchMeans.suo
│ │ ├── 03_diy
│ │ │ └── RecordEmpInfo
│ │ │ ├── RecordEmpInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RecordEmpInfo.csproj
│ │ │ ├── RecordEmpInfo.sln
│ │ │ └── RecordEmpInfo.suo
│ │ ├── 04
│ │ │ └── ShowStuInfo
│ │ │ ├── ShowStuInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowStuInfo.csproj
│ │ │ ├── ShowStuInfo.sln
│ │ │ └── ShowStuInfo.suo
│ │ ├── 04_diy
│ │ │ └── ShowVehicleInfo
│ │ │ ├── ShowVehicleInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowVehicleInfo.csproj
│ │ │ ├── ShowVehicleInfo.sln
│ │ │ └── ShowVehicleInfo.suo
│ │ ├── 05
│ │ │ └── SealedUserInfo
│ │ │ ├── SealedUserInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SealedUserInfo.csproj
│ │ │ ├── SealedUserInfo.sln
│ │ │ └── SealedUserInfo.suo
│ │ └── 05_diy
│ │ └── SealedIndiviInfo
│ │ ├── SealedIndiviInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SealedIndiviInfo.csproj
│ │ ├── SealedIndiviInfo.suo
│ │ ├── SealedUserInfo.sln
│ │ └── SealedUserInfo.suo
│ ├── sl
│ │ ├── 13.01
│ │ │ └── 13.01.txt
│ │ ├── 13.02
│ │ │ └── ISingleJC
│ │ │ ├── ISingleJC
│ │ │ │ ├── ISingleJC.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ISingleJC.sln
│ │ │ └── ISingleJC.suo
│ │ ├── 13.03
│ │ │ └── IShowJC
│ │ │ ├── IShowJC
│ │ │ │ ├── IShowJC.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── IShowJC.sln
│ │ │ └── IShowJC.suo
│ │ ├── 13.04
│ │ │ └── 13.04.txt
│ │ ├── 13.05
│ │ │ └── 13.05.txt
│ │ ├── 13.06
│ │ │ └── UseAClass
│ │ │ ├── UseAClass
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseAClass.csproj
│ │ │ ├── UseAClass.sln
│ │ │ └── UseAClass.suo
│ │ ├── 13.07
│ │ │ └── 13.07.txt
│ │ ├── 13.08
│ │ │ └── 13.08.txt
│ │ └── 13.09
│ │ └── UseSClass
│ │ ├── UseSClass
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseSClass.csproj
│ │ ├── UseSClass.sln
│ │ └── UseSClass.suo
│ └── zmhh
│ ├── 01
│ │ └── CalcRAreaByAbstractClass
│ │ ├── CalcRAreaByAbstractClass
│ │ │ ├── CalcRAreaByAbstractClass.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CalcRAreaByAbstractClass.sln
│ │ └── CalcRAreaByAbstractClass.suo
│ ├── 01_zmhh
│ │ └── CalcRAreaByAbstractClass
│ │ ├── CalcRAreaByAbstractClass
│ │ │ ├── CalcRAreaByAbstractClass.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CalcRAreaByAbstractClass.sln
│ │ └── CalcRAreaByAbstractClass.suo
│ ├── 02
│ │ └── AppInterface
│ │ ├── AppInterface
│ │ │ ├── AppInterface.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AppInterface.sln
│ │ └── AppInterface.suo
│ ├── 02_zmhh
│ │ └── AppInterface
│ │ ├── AppInterface
│ │ │ ├── AppInterface.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AppInterface.sln
│ │ └── AppInterface.suo
│ ├── 03
│ │ └── UseInterface
│ │ ├── UseInterAsParam
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseInterAsParam.csproj
│ │ ├── UseInterface.sln
│ │ └── UseInterface.suo
│ ├── 03_zmhh
│ │ └── UseInterface
│ │ ├── UseInterAsParam
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseInterAsParam.csproj
│ │ ├── UseInterface.sln
│ │ └── UseInterface.suo
│ ├── 04
│ │ └── AddByVirtualMethod
│ │ ├── AddByVirtualMethod
│ │ │ ├── AddByVirtualMethod.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddByVirtualMethod.sln
│ │ └── AddByVirtualMethod.suo
│ ├── 04_zmhh
│ │ └── AddByVirtualMethod
│ │ ├── AddByVirtualMethod
│ │ │ ├── AddByVirtualMethod.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddByVirtualMethod.sln
│ │ └── AddByVirtualMethod.suo
│ ├── 05
│ │ └── GeneralImplement
│ │ ├── GeneralImplement.sln
│ │ ├── GeneralImplement.suo
│ │ └── MutilInherit
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── MutilInherit.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── 05_zmhh
│ └── GeneralImplement
│ ├── GeneralImplement.sln
│ ├── GeneralImplement.suo
│ └── MutilInherit
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── MutilInherit.csproj
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── 14
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ProcedureQuery
│ │ │ ├── ProcedureQuery
│ │ │ │ ├── app.config
│ │ │ │ ├── DataClasses.dbml
│ │ │ │ ├── DataClasses.dbml.layout
│ │ │ │ ├── DataClasses.designer.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── ProcedureQuery.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ProcedureQuery.sln
│ │ │ └── ProcedureQuery.suo
│ │ ├── 01_diy
│ │ │ └── MultiTableJoin
│ │ │ ├── MultiTableJoin
│ │ │ │ ├── app.config
│ │ │ │ ├── DataClasses.dbml
│ │ │ │ ├── DataClasses.dbml.layout
│ │ │ │ ├── DataClasses.designer.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── MultiTableJoin.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MultiTableJoin.sln
│ │ │ └── MultiTableJoin.suo
│ │ ├── 02
│ │ │ └── LinqLogin
│ │ │ ├── LinqLogin
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── LinqClass.dbml
│ │ │ │ ├── LinqClass.dbml.layout
│ │ │ │ ├── LinqClass.designer.cs
│ │ │ │ ├── LinqLogin.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqLogin.sln
│ │ │ └── LinqLogin.suo
│ │ ├── 02_diy
│ │ │ └── SQLInner
│ │ │ ├── SQLInner
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SQLInner.csproj
│ │ │ ├── SQLInner.sln
│ │ │ └── SQLInner.suo
│ │ ├── 03
│ │ │ └── LinqPages
│ │ │ ├── LinqPages
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── LinqClass.dbml
│ │ │ │ ├── LinqClass.dbml.layout
│ │ │ │ ├── LinqClass.designer.cs
│ │ │ │ ├── LinqPages.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqPages.sln
│ │ │ └── LinqPages.suo
│ │ ├── 03_diy
│ │ │ └── LinqPages
│ │ │ ├── LinqPages
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── LinqClass.dbml
│ │ │ │ ├── LinqClass.dbml.layout
│ │ │ │ ├── LinqClass.designer.cs
│ │ │ │ ├── LinqPages.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqPages.sln
│ │ │ └── LinqPages.suo
│ │ ├── 04
│ │ │ └── TakeWhile
│ │ │ ├── TakeWhile
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── TakeWhile.csproj
│ │ │ │ └── TakeWhile.csproj.user
│ │ │ ├── TakeWhile.sln
│ │ │ └── TakeWhile.suo
│ │ ├── 04_diy
│ │ │ └── Take
│ │ │ ├── Take
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Take.csproj
│ │ │ ├── Take.sln
│ │ │ └── Take.suo
│ │ ├── 05
│ │ │ └── XmlToDatabase
│ │ │ ├── XmlToDatabase
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── linqtosql.dbml
│ │ │ │ ├── linqtosql.dbml.layout
│ │ │ │ ├── linqtosql.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── XmlToDatabase.csproj
│ │ │ ├── XmlToDatabase.sln
│ │ │ └── XmlToDatabase.suo
│ │ └── 05_diy
│ │ └── LinqToXmlConvert
│ │ ├── LinqToXmlConvert
│ │ │ ├── app.config
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── LinqToXmlConvert.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LinqToXmlConvert.sln
│ │ └── LinqToXmlConvert.suo
│ ├── sl
│ │ ├── 14.01
│ │ │ └── 14.01.txt
│ │ ├── 14.02
│ │ │ └── varQuery
│ │ │ ├── varQuery
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── varQuery.csproj
│ │ │ ├── varQuery.sln
│ │ │ └── varQuery.suo
│ │ ├── 14.03
│ │ │ └── useLambda
│ │ │ ├── useLambda
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── useLambda.csproj
│ │ │ ├── useLambda.sln
│ │ │ └── useLambda.suo
│ │ ├── 14.04
│ │ │ └── LINQQuery
│ │ │ ├── LINQQuery
│ │ │ │ ├── LINQQuery.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── LINQQuery.sln
│ │ │ └── LINQQuery.suo
│ │ ├── 14.05
│ │ │ └── LINQSelectSql
│ │ │ ├── LINQSelectSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LINQSelectSql.csproj
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQSelectSql.sln
│ │ │ └── LINQSelectSql.suo
│ │ ├── 14.06
│ │ │ └── LINQAddSql
│ │ │ ├── LINQAddSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LINQAddSql.csproj
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQAddSql.sln
│ │ │ └── LINQAddSql.suo
│ │ ├── 14.07
│ │ │ └── LINQUpdateSql
│ │ │ ├── LINQUpdateSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── linqtosqlClass.cs
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── LINQUpdateSql.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQUpdateSql.sln
│ │ │ └── LINQUpdateSql.suo
│ │ ├── 14.08
│ │ │ └── LINQDelSql
│ │ │ ├── LINQDelSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LINQDelSql.csproj
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQDelSql.sln
│ │ │ └── LINQDelSql.suo
│ │ ├── 14.09
│ │ │ └── LinqOperObjects
│ │ │ ├── LinqOperObjects
│ │ │ │ ├── LinqOperObjects.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── LinqOperObjects.sln
│ │ │ └── LinqOperObjects.suo
│ │ ├── 14.10
│ │ │ └── LinqShowDS
│ │ │ ├── LinqShowDS
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LinqShowDS.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqShowDS.sln
│ │ │ └── LinqShowDS.suo
│ │ └── 14.11
│ │ └── LinqOperXML
│ │ ├── LinqOperXML
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── LinqOperXML.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LinqOperXML.sln
│ │ └── LinqOperXML.suo
│ └── zmhh
│ ├── 01
│ │ └── Contains
│ │ ├── Contains
│ │ │ ├── Contains.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Contains.sln
│ │ └── Contains.suo
│ ├── 01_zmhh
│ │ └── ALL
│ │ ├── ALL
│ │ │ ├── ALL.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ALL.sln
│ │ └── ALL.suo
│ ├── 02
│ │ └── RandomSeqByLinq
│ │ ├── RandomSeqByLinq
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── RandomSeqByLinq.csproj
│ │ ├── RandomSeqByLinq.sln
│ │ └── RandomSeqByLinq.suo
│ ├── 02_zmhh
│ │ └── CreateStringByLinq
│ │ ├── CreateStringByLinq
│ │ │ ├── CreateStringByLinq.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CreateStringByLinq.sln
│ │ └── CreateStringByLinq.suo
│ ├── 03
│ │ └── Count
│ │ ├── Count
│ │ │ ├── app.config
│ │ │ ├── Count.csproj
│ │ │ ├── DataClasses.cs
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Count.sln
│ │ └── Count.suo
│ ├── 03_zmhh
│ │ └── Sum
│ │ ├── Sum
│ │ │ ├── app.config
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Sum.csproj
│ │ ├── Sum.sln
│ │ └── Sum.suo
│ ├── 04
│ │ └── Average
│ │ ├── Average
│ │ │ ├── app.config
│ │ │ ├── Average.csproj
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Average.sln
│ │ └── Average.suo
│ ├── 04_zmhh
│ │ └── Max
│ │ ├── Max
│ │ │ ├── app.config
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Max.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Max.sln
│ │ └── Max.suo
│ ├── 05
│ │ └── Intersect
│ │ ├── Intersect
│ │ │ ├── app.config
│ │ │ ├── DataClasses.cs
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Intersect.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Intersect.sln
│ │ └── Intersect.suo
│ └── 05_zmhh
│ └── Except
│ ├── Except
│ │ ├── app.config
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ ├── DataClasses.designer.cs
│ │ ├── Except.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Except.sln
│ └── Except.suo
├── 15
│ ├── qjyy
│ │ ├── 01
│ │ │ └── CreateFile
│ │ │ └── CreateFile
│ │ │ ├── CreateFile
│ │ │ │ ├── CreateFile.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CreateFile.sln
│ │ │ └── CreateFile.suo
│ │ ├── 01_diy
│ │ │ └── CreateDirByDate
│ │ │ ├── CreateDirByDate
│ │ │ │ ├── CreateDirByDate.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CreateDirByDate.sln
│ │ │ └── CreateDirByDate.suo
│ │ ├── 02
│ │ │ └── FileBatchChangeName
│ │ │ ├── FileBatchChangeName
│ │ │ │ ├── copy.gif
│ │ │ │ ├── FileBatchChangeName.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── gg.gif
│ │ │ │ ├── netspell.gif
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── 图标 (166).ico
│ │ │ │ ├── 图标 (179).ico
│ │ │ │ ├── 图标 (220).ico
│ │ │ │ ├── 图标 (99).ico
│ │ │ │ └── 图标.ico
│ │ │ ├── FileBatchChangeName.sln
│ │ │ └── FileBatchChangeName.suo
│ │ ├── 02_diy
│ │ │ └── CopyLotFiles
│ │ │ ├── CopyLotFiles
│ │ │ │ ├── CopyLotFiles.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CopyLotFiles.sln
│ │ │ └── CopyLotFiles.suo
│ │ ├── 03
│ │ │ └── FileCopyPlan
│ │ │ ├── FileCopyPlan
│ │ │ │ ├── FileCopyPlan.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileCopyPlan.sln
│ │ │ └── FileCopyPlan.suo
│ │ ├── 03_diy
│ │ │ └── FileCopy
│ │ │ ├── FileCopy
│ │ │ │ ├── FileCopy.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileCopy.sln
│ │ │ └── FileCopy.suo
│ │ ├── 04
│ │ │ └── CamouflageFolder
│ │ │ ├── CamouflageFolder
│ │ │ │ ├── CamouflageFolder.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CamouflageFolder.sln
│ │ │ └── CamouflageFolder.suo
│ │ ├── 04_diy
│ │ │ └── FileIco
│ │ │ ├── FileIco
│ │ │ │ ├── FileIco.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileIco.sln
│ │ │ └── FileIco.suo
│ │ ├── 05
│ │ │ └── ManageFileByType
│ │ │ ├── ManageFileByType
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── ManageFileByType.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ManageFileByType.sln
│ │ │ └── ManageFileByType.suo
│ │ └── 05_diy
│ │ └── FileComminuteUnite
│ │ ├── FileComminuteUnite
│ │ │ ├── FileComminuteUnite.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FileComminuteUnite.sln
│ │ └── FileComminuteUnite.suo
│ ├── sl
│ │ ├── 15.01
│ │ │ └── UseFile
│ │ │ ├── UseFile
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseFile.csproj
│ │ │ ├── UseFile.sln
│ │ │ └── UseFile.suo
│ │ ├── 15.02
│ │ │ └── UseFileInfo
│ │ │ ├── UseFileInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseFileInfo.csproj
│ │ │ ├── UseFileInfo.sln
│ │ │ └── UseFileInfo.suo
│ │ ├── 15.03
│ │ │ └── UseDirectory
│ │ │ ├── UseDirectory
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseDirectory.csproj
│ │ │ ├── UseDirectory.sln
│ │ │ └── UseDirectory.suo
│ │ ├── 15.04
│ │ │ └── UseDirectoryInfo
│ │ │ ├── UseDirectoryInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseDirectoryInfo.csproj
│ │ │ ├── UseDirectoryInfo.sln
│ │ │ └── UseDirectoryInfo.suo
│ │ ├── 15.05
│ │ │ └── 15.05.txt
│ │ ├── 15.06
│ │ │ └── 15.06.txt
│ │ ├── 15.07
│ │ │ └── 15.07.txt
│ │ ├── 15.08
│ │ │ └── 15.08.txt
│ │ ├── 15.09
│ │ │ └── 15.09.txt
│ │ ├── 15.10
│ │ │ └── 15.10.txt
│ │ ├── 15.11
│ │ │ └── 15.11.txt
│ │ ├── 15.12
│ │ │ └── 15.12.txt
│ │ ├── 15.13
│ │ │ └── 15.13.txt
│ │ ├── 15.14
│ │ │ └── 15.14.txt
│ │ ├── 15.15
│ │ │ └── 15.15.txt
│ │ ├── 15.16
│ │ │ └── 15.16.txt
│ │ ├── 15.17
│ │ │ └── 15.17.txt
│ │ ├── 15.18
│ │ │ └── 15.18.txt
│ │ ├── 15.19
│ │ │ └── 15.19.txt
│ │ ├── 15.20
│ │ │ └── 15.20.txt
│ │ ├── 15.21
│ │ │ └── 15.21.txt
│ │ ├── 15.22
│ │ │ └── 15.22.txt
│ │ ├── 15.23
│ │ │ └── 15.23.txt
│ │ ├── 15.24
│ │ │ └── RWTxtByIO
│ │ │ ├── RWTxtByIO
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RWTxtByIO.csproj
│ │ │ ├── RWTxtByIO.sln
│ │ │ └── RWTxtByIO.suo
│ │ └── 15.25
│ │ └── RWBFileByIO
│ │ ├── RWBFileByIO
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RWBFileByIO.csproj
│ │ ├── RWBFileByIO.sln
│ │ └── RWBFileByIO.suo
│ └── zmhh
│ ├── 01
│ │ └── GetFileInfo
│ │ ├── GetFileInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetFileInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetFileInfo.sln
│ │ └── GetFileInfo.suo
│ ├── 01_zmhh
│ │ └── FileExt
│ │ ├── FileExt
│ │ │ ├── FileExt.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FileExt.sln
│ │ └── FileExt.suo
│ ├── 02
│ │ └── GetDirectoryInfo
│ │ ├── GetDirectoryInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetDirectoryInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetDirectoryInfo.sln
│ │ └── GetDirectoryInfo.suo
│ ├── 02_zmhh
│ │ └── DeleteAllFiles
│ │ ├── DeleteAllFiles
│ │ │ ├── DeleteAllFiles.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DeleteAllFiles.sln
│ │ └── DeleteAllFiles.suo
│ ├── 03
│ │ └── INIFileOperate
│ │ ├── INIFileOperate
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── INIFileOperate.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── INIFileOperate.sln
│ │ └── INIFileOperate.suo
│ ├── 03_zmhh
│ │ └── GetODBCInfo
│ │ ├── GetODBCInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetODBCInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetODBCInfo.sln
│ │ └── GetODBCInfo.suo
│ ├── 04
│ │ └── ReadFileByLine
│ │ ├── ReadFileByLine
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReadFileByLine.csproj
│ │ ├── ReadFileByLine.sln
│ │ └── ReadFileByLine.suo
│ ├── 04_zmhh
│ │ └── ReadFirstLine
│ │ ├── ReadFirstLine
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReadFirstLine.csproj
│ │ ├── ReadFirstLine.sln
│ │ └── ReadFirstLine.suo
│ ├── 05
│ │ └── GetUpDir
│ │ ├── GetUpDir
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetUpDir.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetUpDir.sln
│ │ └── GetUpDir.suo
│ └── 05_zmhh
│ └── GetRootDir
│ ├── GetUpDir
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── GetUpDir.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── GetUpDir.sln
│ └── GetUpDir.suo
├── 16
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ChineseCode
│ │ │ ├── ChineseCode
│ │ │ │ ├── ChineseCode.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChineseCode.sln
│ │ │ └── ChineseCode.suo
│ │ ├── 01_diy
│ │ │ └── DrawValidateCode
│ │ │ ├── DrawValidateCode
│ │ │ │ ├── DrawValidateCode.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DrawValidateCode.sln
│ │ │ └── DrawValidateCode.suo
│ │ ├── 02
│ │ │ └── PictureBatchConversion
│ │ │ ├── PictureBatchConversion
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── PictureBatchConversion.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 保存11.ico
│ │ │ │ ├── 保存1.ico
│ │ │ │ ├── 图标 (163).png
│ │ │ │ ├── 图标 (23).ico
│ │ │ │ ├── 图标 (28).png
│ │ │ │ ├── 图标 (29).ico
│ │ │ │ ├── 打开1.ico
│ │ │ │ └── 打开.ico
│ │ │ ├── PictureBatchConversion.sln
│ │ │ └── PictureBatchConversion.suo
│ │ ├── 02_diy
│ │ │ └── GIFChangeJPG
│ │ │ ├── GIFChangeJPG
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GIFChangeJPG.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GIFChangeJPG.sln
│ │ │ └── GIFChangeJPG.suo
│ │ ├── 03
│ │ │ └── WebSnap
│ │ │ ├── WebSnap
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── WebSnap.csproj
│ │ │ │ └── 转到.ico
│ │ │ ├── WebSnap.sln
│ │ │ └── WebSnap.suo
│ │ ├── 03_diy
│ │ │ └── GetScreen
│ │ │ ├── GetScreen
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetScreen.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Setup.ini
│ │ │ ├── GetScreen.sln
│ │ │ └── GetScreen.suo
│ │ ├── 04
│ │ │ └── IMGwatermark
│ │ │ ├── IMGwatermark
│ │ │ │ ├── Frm_Browser.cs
│ │ │ │ ├── Frm_Browser.Designer.cs
│ │ │ │ ├── Frm_Browser.resx
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IMGwatermark.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IMGwatermark.sln
│ │ │ └── IMGwatermark.suo
│ │ ├── 04_diy
│ │ │ └── IMGAddDate
│ │ │ ├── IMGAddDate
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IMGAddDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ ├── IMGAddDate.sln
│ │ │ └── IMGAddDate.suo
│ │ ├── 05
│ │ │ └── ChuffedFarm
│ │ │ ├── ChuffedFarm
│ │ │ │ ├── ChuffedFarm.csproj
│ │ │ │ ├── CPictureBox.cs
│ │ │ │ ├── CPictureBox.Designer.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── images
│ │ │ │ │ ├── bloom.png
│ │ │ │ │ ├── fruit.png
│ │ │ │ │ ├── grow.png
│ │ │ │ │ ├── plowland.jpg
│ │ │ │ │ ├── seed2.png
│ │ │ │ │ ├── seed.png
│ │ │ │ │ ├── 开花1.png
│ │ │ │ │ ├── 开花.png
│ │ │ │ │ ├── 播种1.png
│ │ │ │ │ ├── 播种.png
│ │ │ │ │ ├── 收获1.png
│ │ │ │ │ ├── 收获.png
│ │ │ │ │ ├── 生长1.png
│ │ │ │ │ ├── 生长.png
│ │ │ │ │ ├── 结果1.png
│ │ │ │ │ └── 结果.png
│ │ │ │ ├── PlantState.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChuffedFarm.sln
│ │ │ └── ChuffedFarm.suo
│ │ └── 05_diy
│ │ └── ChuffedFarm_Extend
│ │ ├── ChuffedFarm
│ │ │ ├── ChuffedFarm.csproj
│ │ │ ├── CPictureBox.cs
│ │ │ ├── CPictureBox.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── images
│ │ │ │ ├── bloom.png
│ │ │ │ ├── fruit.png
│ │ │ │ ├── grow.png
│ │ │ │ ├── plowland.jpg
│ │ │ │ ├── seed2.png
│ │ │ │ ├── seed.png
│ │ │ │ ├── 开花1.png
│ │ │ │ ├── 开花.png
│ │ │ │ ├── 播种1.png
│ │ │ │ ├── 播种.png
│ │ │ │ ├── 收获1.png
│ │ │ │ ├── 收获.png
│ │ │ │ ├── 生长1.png
│ │ │ │ ├── 生长.png
│ │ │ │ ├── 结果1.png
│ │ │ │ └── 结果.png
│ │ │ ├── PlantState.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ChuffedFarm.sln
│ │ └── ChuffedFarm.suo
│ ├── sl
│ │ ├── 16.01
│ │ │ └── 16.01.txt
│ │ ├── 16.02
│ │ │ └── 16.02.txt
│ │ ├── 16.03
│ │ │ └── 16.03.txt
│ │ ├── 16.04
│ │ │ └── 16.04.txt
│ │ ├── 16.05
│ │ │ └── UseBrush
│ │ │ ├── UseBrush
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseBrush.csproj
│ │ │ ├── UseBrush.sln
│ │ │ └── UseBrush.suo
│ │ ├── 16.06
│ │ │ └── UseHatchBrush
│ │ │ ├── UseHatchBrush
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseHatchBrush.csproj
│ │ │ ├── UseHatchBrush.sln
│ │ │ └── UseHatchBrush.suo
│ │ ├── 16.07
│ │ │ └── UseLinerGradientBrush
│ │ │ ├── UseLinerGradientBrush
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseLinerGradientBrush.csproj
│ │ │ ├── UseLinerGradientBrush.sln
│ │ │ └── UseLinerGradientBrush.suo
│ │ ├── 16.08
│ │ │ └── DLine
│ │ │ ├── DLine
│ │ │ │ ├── DLine.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DLine.sln
│ │ │ └── DLine.suo
│ │ ├── 16.09
│ │ │ └── DRectangle
│ │ │ ├── DRectangle
│ │ │ │ ├── DRectangle.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DRectangle.sln
│ │ │ └── DRectangle.suo
│ │ ├── 16.10
│ │ │ └── DEllipse
│ │ │ ├── DEllipse
│ │ │ │ ├── DEllipse.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DEllipse.sln
│ │ │ └── DEllipse.suo
│ │ ├── 16.11
│ │ │ └── DArc
│ │ │ ├── DArc
│ │ │ │ ├── DArc.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DArc.sln
│ │ │ └── DArc.suo
│ │ ├── 16.12
│ │ │ └── DPie
│ │ │ ├── DPie
│ │ │ │ ├── DPie.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DPie.sln
│ │ │ └── DPie.suo
│ │ ├── 16.13
│ │ │ └── DPolygon
│ │ │ ├── DPolygon
│ │ │ │ ├── DPolygon.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DPolygon.sln
│ │ │ └── DPolygon.suo
│ │ ├── 16.14
│ │ │ └── DString
│ │ │ ├── DString
│ │ │ │ ├── DString.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DString.sln
│ │ │ └── DString.suo
│ │ └── 16.15
│ │ └── DImage
│ │ ├── DImage
│ │ │ ├── DImage.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DImage.sln
│ │ └── DImage.suo
│ └── zmhh
│ ├── 01
│ │ └── Cachet
│ │ ├── Cachet
│ │ │ ├── Cachet.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Cachet.sln
│ │ └── Cachet.suo
│ ├── 01_zmhh
│ │ └── Cachet
│ │ ├── Cachet
│ │ │ ├── Cachet.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Cachet.sln
│ │ └── Cachet.suo
│ ├── 02
│ │ └── WaveImage
│ │ ├── WaveImage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WaveImage.csproj
│ │ ├── WaveImage.sln
│ │ └── WaveImage.suo
│ ├── 02_zmhh
│ │ └── WaveImage
│ │ ├── WaveImage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WaveImage.csproj
│ │ ├── WaveImage.sln
│ │ └── WaveImage.suo
│ ├── 03
│ │ └── ImgMicroimage
│ │ ├── ImgMicroimage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── ImgMicroimage.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── 图标 (55).png
│ │ │ ├── 图标 (68).png
│ │ │ ├── 打开1.ico
│ │ │ └── 打开.ico
│ │ ├── ImgMicroimage.sln
│ │ └── ImgMicroimage.suo
│ ├── 03_zmhh
│ │ └── ImgMicroimage
│ │ ├── ImgMicroimage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── ImgMicroimage.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── 图标 (55).png
│ │ │ ├── 图标 (68).png
│ │ │ ├── 打开1.ico
│ │ │ └── 打开.ico
│ │ ├── ImgMicroimage.sln
│ │ └── ImgMicroimage.suo
│ ├── 04
│ │ └── RevolveImageByAngle
│ │ ├── RevolveImageByAngle
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RevolveImageByAngle.csproj
│ │ ├── RevolveImageByAngle.sln
│ │ └── RevolveImageByAngle.suo
│ ├── 04_zmhh
│ │ └── RevolveJPG
│ │ ├── RevolveJPG
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RevolveJPG.csproj
│ │ ├── RevolveJPG.sln
│ │ └── RevolveJPG.suo
│ ├── 05
│ │ └── BassoRelievo
│ │ ├── BassoRelievo
│ │ │ ├── BassoRelievo.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BassoRelievo.sln
│ │ └── BassoRelievo.suo
│ └── 05_zmhh
│ └── NegativeImage
│ ├── NegativeImage
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── NegativeImage.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── NegativeImage.sln
│ └── NegativeImage.suo
├── 17
│ ├── qjyy
│ │ ├── 01
│ │ │ └── PrintStuResume
│ │ │ ├── PrintStuResume
│ │ │ │ ├── frmMain.cs
│ │ │ │ ├── frmMain.Designer.cs
│ │ │ │ ├── frmMain.resx
│ │ │ │ ├── frmPrint.cs
│ │ │ │ ├── frmPrint.Designer.cs
│ │ │ │ ├── frmPrint.resx
│ │ │ │ ├── PrintStuResume.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintStuResume.sln
│ │ │ └── PrintStuResume.suo
│ │ ├── 01_diy
│ │ │ └── PrintText
│ │ │ ├── PrintText
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PrintText.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintText.sln
│ │ │ └── PrintText.suo
│ │ ├── 02
│ │ │ └── PrintStuCertificate
│ │ │ ├── PrintStuCertificate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PrintStuCertificate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintStuCertificate.sln
│ │ │ └── PrintStuCertificate.suo
│ │ ├── 02_diy
│ │ │ └── PrintEmptyCertificate
│ │ │ ├── PrintEmptyCertificate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PrintEmptyCertificate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintEmptyCertificate.sln
│ │ │ └── PrintEmptyCertificate.suo
│ │ ├── 03
│ │ │ └── DisplayGetPrize
│ │ │ ├── DisplayGetPrize
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── DisplayGetPrize.csproj
│ │ │ │ ├── DisplayGetPrize.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DisplayGetPrize.sln
│ │ │ └── DisplayGetPrize.suo
│ │ ├── 03_diy
│ │ │ └── DisplayGetPrize
│ │ │ ├── DisplayGetPrize
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── DisplayGetPrize.csproj
│ │ │ │ ├── DisplayGetPrize.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DisplayGetPrize.sln
│ │ │ └── DisplayGetPrize.suo
│ │ ├── 04
│ │ │ └── GetPercent
│ │ │ ├── GetPercent
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetPercent.csproj
│ │ │ │ ├── GetPercent.csproj.user
│ │ │ │ ├── MyCrystalReport.cs
│ │ │ │ ├── MyCrystalReport.rpt
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetPercent.sln
│ │ │ └── GetPercent.suo
│ │ ├── 04_diy
│ │ │ └── GetPercent
│ │ │ ├── GetPercent
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetPercent.csproj
│ │ │ │ ├── GetPercent.csproj.user
│ │ │ │ ├── MyCrystalReport.cs
│ │ │ │ ├── MyCrystalReport.rpt
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetPercent.sln
│ │ │ └── GetPercent.suo
│ │ ├── 05
│ │ │ └── GroupByClass
│ │ │ ├── GroupByClass
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GroupByClass.csproj
│ │ │ │ ├── GroupByClass.csproj.user
│ │ │ │ ├── MyCrystalReport.cs
│ │ │ │ ├── MyCrystalReport.rpt
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GroupByClass.sln
│ │ │ └── GroupByClass.suo
│ │ └── 05_diy
│ │ └── GroupByClass
│ │ ├── GroupByClass
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GroupByClass.csproj
│ │ │ ├── GroupByClass.csproj.user
│ │ │ ├── MyCrystalReport.cs
│ │ │ ├── MyCrystalReport.rpt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GroupByClass.sln
│ │ └── GroupByClass.suo
│ ├── sl
│ │ ├── 17.01
│ │ │ └── CreateCReport
│ │ │ ├── CreateCReport
│ │ │ │ ├── CreateCReport.csproj
│ │ │ │ ├── CreateCReport.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CreateCReport.sln
│ │ │ └── CreateCReport.suo
│ │ ├── 17.02
│ │ │ └── CReportGroup
│ │ │ ├── CReportGroup
│ │ │ │ ├── CReportGroup.csproj
│ │ │ │ ├── CReportGroup.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportGroup.sln
│ │ │ └── CReportGroup.suo
│ │ ├── 17.03
│ │ │ └── CReportSort
│ │ │ ├── CReportSort
│ │ │ │ ├── CReportSort.csproj
│ │ │ │ ├── CReportSort.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportSort.sln
│ │ │ └── CReportSort.suo
│ │ ├── 17.04
│ │ │ └── CReportFilter
│ │ │ ├── CReportFilter
│ │ │ │ ├── CReportFilter.csproj
│ │ │ │ ├── CReportFilter.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportFilter.sln
│ │ │ └── CReportFilter.suo
│ │ ├── 17.05
│ │ │ └── 17.05.png
│ │ ├── 17.06
│ │ │ └── CReportImage
│ │ │ ├── CReportImage
│ │ │ │ ├── CReportImage.csproj
│ │ │ │ ├── CReportImage.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportImage.sln
│ │ │ └── CReportImage.suo
│ │ ├── 17.07
│ │ │ └── CReportChild
│ │ │ ├── CReportChild
│ │ │ │ ├── CReportChild.csproj
│ │ │ │ ├── CReportChild.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportChild.sln
│ │ │ └── CReportChild.suo
│ │ ├── 17.08
│ │ │ └── 17.08.txt
│ │ ├── 17.09
│ │ │ └── 17.09.txt
│ │ ├── 17.10
│ │ │ └── UsePrintDocument
│ │ │ ├── UsePrintDocument
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePrintDocument.csproj
│ │ │ ├── UsePrintDocument.sln
│ │ │ └── UsePrintDocument.suo
│ │ ├── 17.11
│ │ │ └── UsePrintPreviewControl
│ │ │ ├── UsePrintPreviewControl
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePrintPreviewControl.csproj
│ │ │ ├── UsePrintPreviewControl.sln
│ │ │ └── UsePrintPreviewControl.suo
│ │ ├── 17.12
│ │ │ └── 17.12.txt
│ │ ├── 17.13
│ │ │ └── 17.13.txt
│ │ └── 17.14
│ │ └── 17.14.txt
│ └── zmhh
│ ├── 01
│ │ └── HPrint
│ │ ├── HPrint
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── HPrint.csproj
│ │ │ ├── PrintClass.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── HPrint.sln
│ │ └── HPrint.suo
│ ├── 01_zmhh
│ │ └── VPrint
│ │ ├── VPrint
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintClass.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── VPrint.csproj
│ │ ├── VPrint.sln
│ │ └── VPrint.suo
│ ├── 02
│ │ └── SetPrintRange
│ │ ├── SetPrintRange
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetPrintRange.csproj
│ │ ├── SetPrintRange.sln
│ │ └── SetPrintRange.suo
│ ├── 02_zmhh
│ │ └── PrintTopFive
│ │ ├── PrintTopFive
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintTopFive.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PrintTopFive.sln
│ │ └── PrintTopFive.suo
│ ├── 03
│ │ └── PrintGoodsInBill
│ │ ├── PrintGoodsInBill
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintGoodsInBill.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PrintGoodsInBill.sln
│ │ └── PrintGoodsInBill.suo
│ ├── 03_zmhh
│ │ └── PrintGoodsOutBill
│ │ ├── PrintGoodsOutBill
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintGoodsOutBill.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PrintGoodsOutBill.sln
│ │ └── PrintGoodsOutBill.suo
│ ├── 04
│ │ └── BackImage
│ │ ├── BackImage
│ │ │ ├── BackImage.csproj
│ │ │ ├── BackImage.csproj.user
│ │ │ ├── CrystalReport1.cs
│ │ │ ├── CrystalReport1.rpt
│ │ │ ├── Ex21_03.suo
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BackImage.sln
│ │ └── BackImage.suo
│ ├── 04_zmhh
│ │ └── ItemImage
│ │ ├── ItemImage
│ │ │ ├── CrystalReport1.cs
│ │ │ ├── CrystalReport1.rpt
│ │ │ ├── Ex21_03.suo
│ │ │ ├── Ex21_04.sln
│ │ │ ├── Ex21_04.suo
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── ItemImage.csproj
│ │ │ ├── ItemImage.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ItemImage.sln
│ │ └── ItemImage.suo
│ ├── 05
│ │ └── CrystalReportPrintDateTime
│ │ ├── CrystalReportPrintDateTime
│ │ │ ├── CrystalReportPrintDateTime.csproj
│ │ │ ├── CrystalReportPrintDateTime.csproj.user
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MyCrystalReport.cs
│ │ │ ├── MyCrystalReport.rpt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CrystalReportPrintDateTime.sln
│ │ └── CrystalReportPrintDateTime.suo
│ └── 05_zmhh
│ └── CrystalReportPrintDateTime
│ ├── CrystalReportPrintDateTime
│ │ ├── CrystalReportPrintDateTime.csproj
│ │ ├── CrystalReportPrintDateTime.csproj.user
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── MyCrystalReport.cs
│ │ ├── MyCrystalReport.rpt
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── CrystalReportPrintDateTime.sln
│ └── CrystalReportPrintDateTime.suo
├── 18
│ ├── qjyy
│ │ ├── 01
│ │ │ └── NetInfoAndFlux
│ │ │ ├── NetInfoAndFlux
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NetInfoAndFlux.csproj
│ │ │ │ ├── NetInfo.cs
│ │ │ │ ├── NetStruct.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NetInfoAndFlux.sln
│ │ │ └── NetInfoAndFlux.suo
│ │ ├── 01_diy
│ │ │ └── DetectNetState
│ │ │ ├── 1.bmp
│ │ │ ├── DetectNetState.csproj
│ │ │ ├── DetectNetState.sln
│ │ │ ├── DetectNetState.suo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── 02
│ │ │ └── CRRemoteComputer
│ │ │ ├── CRRemoteComputer
│ │ │ │ ├── CRRemoteComputer.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CRRemoteComputer.sln
│ │ │ └── CRRemoteComputer.suo
│ │ ├── 02_diy
│ │ │ └── TimeCloseComputer
│ │ │ ├── TimeCloseComputer
│ │ │ │ ├── db.mdb
│ │ │ │ ├── false.jpg
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── TimeCloseComputer.csproj
│ │ │ │ ├── TimeCloseComputer.csproj.user
│ │ │ │ ├── true.jpg
│ │ │ │ ├── 图标 (187).ico
│ │ │ │ ├── 图标 (18).ico
│ │ │ │ └── 图标 (93).ico
│ │ │ ├── TimeCloseComputer.sln
│ │ │ └── TimeCloseComputer.suo
│ │ ├── 03
│ │ │ └── MRBrowser
│ │ │ ├── MRBrowser
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MRBrowser.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MRBrowser.sln
│ │ │ └── MRBrowser.suo
│ │ ├── 03_diy
│ │ │ └── MakeCustomBrowser
│ │ │ ├── MakeCustomBrowser
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── MakeCustomBrowser.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MakeCustomBrowser.sln
│ │ │ └── MakeCustomBrowser.suo
│ │ ├── 04
│ │ │ └── P2PChat
│ │ │ ├── P2PChat
│ │ │ │ ├── frmMain.cs
│ │ │ │ ├── frmMain.Designer.cs
│ │ │ │ ├── frmMain.resx
│ │ │ │ ├── P2PChat.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── P2PChat.sln
│ │ │ └── P2PChat.suo
│ │ ├── 04_diy
│ │ │ └── UDPChat
│ │ │ ├── UDPChat
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UDPChat.csproj
│ │ │ ├── UDPChat.sln
│ │ │ ├── UDPChat.suo
│ │ │ └── UDPServer
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UDPServer.csproj
│ │ ├── 05
│ │ │ └── EmailSendAndReceive
│ │ │ ├── EmailSendAndReceive
│ │ │ │ ├── EmailSendAndReceive.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── frmReceive.cs
│ │ │ │ ├── frmReceive.designer.cs
│ │ │ │ ├── frmReceive.resx
│ │ │ │ ├── frmSend.cs
│ │ │ │ ├── frmSend.designer.cs
│ │ │ │ ├── frmSend.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── EmailSendAndReceive.sln
│ │ │ └── EmailSendAndReceive.suo
│ │ └── 05_diy
│ │ └── OutLookMail
│ │ ├── OutLookMail
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── OutLookMail.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── OutLookMail.sln
│ │ └── OutLookMail.suo
│ ├── sl
│ │ ├── 18.01
│ │ │ └── UseDns
│ │ │ ├── UseDns
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseDns.csproj
│ │ │ ├── UseDns.sln
│ │ │ └── UseDns.suo
│ │ ├── 18.02
│ │ │ └── UseIPAddress
│ │ │ ├── UseIPAddress
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseIPAddress.csproj
│ │ │ ├── UseIPAddress.sln
│ │ │ └── UseIPAddress.suo
│ │ ├── 18.03
│ │ │ └── UseIPEndPoint
│ │ │ ├── UseIPEndPoint
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseIPEndPoint.csproj
│ │ │ ├── UseIPEndPoint.sln
│ │ │ └── UseIPEndPoint.suo
│ │ ├── 18.04
│ │ │ └── UseWebClient
│ │ │ ├── UseWebClient
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseWebClient.csproj
│ │ │ ├── UseWebClient.sln
│ │ │ └── UseWebClient.suo
│ │ ├── 18.05
│ │ │ └── UseWebResponseAndQuest
│ │ │ ├── UseWebResponseAndQuest
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseWebResponseAndQuest.csproj
│ │ │ ├── UseWebResponseAndQuest.sln
│ │ │ └── UseWebResponseAndQuest.suo
│ │ ├── 18.06
│ │ │ └── UseSocket
│ │ │ ├── UseSocket
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseSocket.csproj
│ │ │ ├── UseSocket.sln
│ │ │ └── UseSocket.suo
│ │ ├── 18.07
│ │ │ └── UseTCP
│ │ │ ├── UseTCP
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTCP.csproj
│ │ │ ├── UseTCP.sln
│ │ │ └── UseTCP.suo
│ │ ├── 18.08
│ │ │ └── UseUDP
│ │ │ ├── UseUDP
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseUDP.csproj
│ │ │ ├── UseUDP.sln
│ │ │ └── UseUDP.suo
│ │ ├── 18.09
│ │ │ └── 18.09.txt
│ │ ├── 18.10
│ │ │ └── 18.10.txt
│ │ └── 18.11
│ │ └── 18.11.txt
│ └── zmhh
│ ├── 01
│ │ └── GetCompuNameByIP
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetCompuNameByIP.csproj
│ │ ├── GetCompuNameByIP.sln
│ │ ├── GetCompuNameByIP.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 01_zmhh
│ │ └── GetCompuNameByIP
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetCompuNameByIP.csproj
│ │ ├── GetCompuNameByIP.sln
│ │ ├── GetCompuNameByIP.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 02
│ │ └── GetMAC
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetMAC.csproj
│ │ ├── GetMAC.sln
│ │ ├── GetMAC.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 02_zmhh
│ │ └── GetVideoInfo
│ │ ├── GetVideoInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetVideoInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetVideoInfo.sln
│ │ └── GetVideoInfo.suo
│ ├── 03
│ │ └── GetWorkGroups
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetWorkGroup.csproj
│ │ ├── GetWorkGroup.sln
│ │ ├── GetWorkGroup.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 03_zmhh
│ │ └── GetAllComputers
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetAllComputers.csproj
│ │ ├── GetAllComputers.sln
│ │ ├── GetAllComputers.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 04
│ │ └── GetDiskInfo
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetDiskInfo.csproj
│ │ ├── GetDiskInfo.sln
│ │ ├── GetDiskInfo.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 04_zmhh
│ │ └── GetDiskInfo
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetDiskInfo.csproj
│ │ ├── GetDiskInfo.sln
│ │ ├── GetDiskInfo.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 05
│ │ └── CreatePing
│ │ ├── CreatePing.csproj
│ │ ├── CreatePing.sln
│ │ ├── CreatePing.suo
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── 05_zmhh
│ └── PingIP
│ ├── PingIP
│ │ ├── PingIP.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── PingIP.sln
│ └── PingIP.suo
├── 19
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ScanIP
│ │ │ ├── ScanIP
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── ip.ico
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ScanIP.csproj
│ │ │ ├── ScanIP.sln
│ │ │ └── ScanIP.suo
│ │ ├── 01_diy
│ │ │ └── FileCopyMove
│ │ │ ├── FileCopyMove
│ │ │ │ ├── FileCopyMove.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileCopyMove.sln
│ │ │ └── FileCopyMove.suo
│ │ ├── 02
│ │ │ └── ChuffedFarm
│ │ │ ├── ChuffedFarm
│ │ │ │ ├── ChuffedFarm.csproj
│ │ │ │ ├── CPictureBox.cs
│ │ │ │ ├── CPictureBox.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── images
│ │ │ │ │ ├── bloom.png
│ │ │ │ │ ├── fruit.png
│ │ │ │ │ ├── grow.png
│ │ │ │ │ ├── plowland.jpg
│ │ │ │ │ ├── seed2.png
│ │ │ │ │ ├── seed.png
│ │ │ │ │ ├── 开花1.png
│ │ │ │ │ ├── 开花.png
│ │ │ │ │ ├── 播种1.png
│ │ │ │ │ ├── 播种.png
│ │ │ │ │ ├── 收获1.png
│ │ │ │ │ ├── 收获.png
│ │ │ │ │ ├── 生长1.png
│ │ │ │ │ ├── 生长.png
│ │ │ │ │ ├── 结果1.png
│ │ │ │ │ └── 结果.png
│ │ │ │ ├── PlantState.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChuffedFarm.sln
│ │ │ └── ChuffedFarm.suo
│ │ ├── 02_diy
│ │ │ └── ImageLeftToRight
│ │ │ ├── ImageLeftToRight
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── ImageLeftToRight.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ImageLeftToRight.sln
│ │ │ └── ImageLeftToRight.suo
│ │ ├── 03
│ │ │ └── AsynchronismFile
│ │ │ ├── AsynchronismFile
│ │ │ │ ├── AsynchronismFile.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Frm_Plan.cs
│ │ │ │ ├── Frm_Plan.Designer.cs
│ │ │ │ ├── Frm_Plan.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AsynchronismFile.sln
│ │ │ └── AsynchronismFile.suo
│ │ ├── 03_diy
│ │ │ └── AsynchronismLoadPlayVoice
│ │ │ ├── AsynchronismLoadPlayVoice
│ │ │ │ ├── AsynchronismLoadPlayVoice.cs
│ │ │ │ ├── AsynchronismLoadPlayVoice.csproj
│ │ │ │ ├── AsynchronismLoadPlayVoice.Designer.cs
│ │ │ │ ├── AsynchronismLoadPlayVoice.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AsynchronismLoadPlayVoice.sln
│ │ │ └── AsynchronismLoadPlayVoice.suo
│ │ ├── 04
│ │ │ └── ShowImageByForm
│ │ │ ├── ShowImageByForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowImageByForm.csproj
│ │ │ ├── ShowImageByForm.sln
│ │ │ └── ShowImageByForm.suo
│ │ ├── 04_diy
│ │ │ └── GetTime
│ │ │ ├── GetTime
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetTime.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetTime.sln
│ │ │ └── GetTime.suo
│ │ ├── 05
│ │ │ └── ScanPort
│ │ │ ├── ScanPort
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ScanPort.csproj
│ │ │ ├── ScanPort.sln
│ │ │ └── ScanPort.suo
│ │ └── 05_diy
│ │ └── DynamicStatus
│ │ ├── DynamicStatus
│ │ │ ├── DynamicStatus.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DynamicStatus.sln
│ │ └── DynamicStatus.suo
│ ├── sl
│ │ ├── 19.01
│ │ │ └── 19.01.txt
│ │ ├── 19.02
│ │ │ └── UseThread
│ │ │ ├── UseThread
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseThread.csproj
│ │ │ ├── UseThread.sln
│ │ │ └── UseThread.suo
│ │ ├── 19.03
│ │ │ └── CreateThread
│ │ │ ├── CreateThread
│ │ │ │ ├── CreateThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CreateThread.sln
│ │ │ └── CreateThread.suo
│ │ ├── 19.04
│ │ │ └── SRThread
│ │ │ ├── SRThread
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SRThread.csproj
│ │ │ ├── SRThread.sln
│ │ │ └── SRThread.suo
│ │ ├── 19.05
│ │ │ └── 19.05.txt
│ │ ├── 19.06
│ │ │ └── AbortThread
│ │ │ ├── AbortThread
│ │ │ │ ├── AbortThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── AbortThread.sln
│ │ │ └── AbortThread.suo
│ │ ├── 19.07
│ │ │ └── JoinThread
│ │ │ ├── JoinThread
│ │ │ │ ├── JoinThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── JoinThread.sln
│ │ │ └── JoinThread.suo
│ │ ├── 19.08
│ │ │ └── SetThreadPri
│ │ │ ├── SetThreadPri
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SetThreadPri.csproj
│ │ │ ├── SetThreadPri.sln
│ │ │ └── SetThreadPri.suo
│ │ ├── 19.09
│ │ │ └── 19.09.txt
│ │ ├── 19.10
│ │ │ └── MonitorThread
│ │ │ ├── MonitorThread
│ │ │ │ ├── MonitorThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── MonitorThread.sln
│ │ │ └── MonitorThread.suo
│ │ └── 19.11
│ │ └── MutexThread
│ │ ├── MutexThread
│ │ │ ├── MutexThread.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── MutexThread.sln
│ │ └── MutexThread.suo
│ └── zmhh
│ ├── 01
│ │ └── JudgeRunState
│ │ ├── JudgeRunState
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── JudgeRunState.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── JudgeRunState.sln
│ │ └── JudgeRunState.suo
│ ├── 01_zmhh
│ │ └── JudgeRunState
│ │ ├── JudgeRunState
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── JudgeRunState.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── JudgeRunState.sln
│ │ └── JudgeRunState.suo
│ ├── 02
│ │ └── RansackFile
│ │ ├── RansackFile
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RansackFile.csproj
│ │ ├── RansackFile.sln
│ │ └── RansackFile.suo
│ ├── 02_zmhh
│ │ └── DeleteFiles
│ │ ├── DeleteDirByDG
│ │ │ ├── DeleteDirByDG.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DeleteDirByDG.sln
│ │ └── DeleteDirByDG.suo
│ ├── 03
│ │ └── Shutter
│ │ ├── Shutter
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Shutter.csproj
│ │ ├── Shutter.sln
│ │ └── Shutter.suo
│ ├── 03_zmhh
│ │ └── ShowImageByResolution
│ │ ├── ShowImageByResolution
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ShowImageByResolution.csproj
│ │ │ └── ShowImageByResolution.csproj.user
│ │ ├── ShowImageByResolution.sln
│ │ └── ShowImageByResolution.suo
│ ├── 04
│ │ └── AccessConnect
│ │ ├── AccessConnect
│ │ │ ├── AccessConnect.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AccessConnect.sln
│ │ └── AccessConnect.suo
│ ├── 04_zmhh
│ │ └── DelData
│ │ ├── AccessConnect
│ │ │ ├── AccessConnect.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AccessConnect.sln
│ │ └── AccessConnect.suo
│ ├── 05
│ │ └── BigAccount
│ │ ├── BigAccount
│ │ │ ├── BigAccount.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BigAccount.sln
│ │ └── BigAccount.suo
│ └── 05_zmhh
│ └── BigAccount
│ ├── BigAccount
│ │ ├── BigAccount.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── BigAccount.sln
│ └── BigAccount.suo
├── 20
│ └── sl
│ ├── 20.01
│ │ └── UseThrow
│ │ ├── UseThrow
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseThrow.csproj
│ │ ├── UseThrow.sln
│ │ └── UseThrow.suo
│ ├── 20.02
│ │ └── UseTrycatch
│ │ ├── UseTrycatch
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseTrycatch.csproj
│ │ ├── UseTrycatch.sln
│ │ └── UseTrycatch.suo
│ └── 20.03
│ └── UseFinally
│ ├── UseFinally
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── UseFinally.csproj
│ ├── UseFinally.sln
│ └── UseFinally.suo
├── 21
├── 22
│ ├── PWMS
│ │ ├── PWMS
│ │ │ ├── Database
│ │ │ │ ├── db_PWMS_log.ldf
│ │ │ │ └── db_PWMS.mdf
│ │ │ ├── DataClass
│ │ │ │ └── MyMeans.cs
│ │ │ ├── F_Login.cs
│ │ │ ├── F_Login.designer.cs
│ │ │ ├── F_Login.resx
│ │ │ ├── F_Main.cs
│ │ │ ├── F_Main.designer.cs
│ │ │ ├── F_Main.resx
│ │ │ ├── Image
│ │ │ │ ├── 01.png
│ │ │ │ ├── 02.png
│ │ │ │ ├── 03.png
│ │ │ │ ├── 04.png
│ │ │ │ ├── 05.png
│ │ │ │ ├── 06.png
│ │ │ │ ├── 07.png
│ │ │ │ ├── 08.png
│ │ │ │ ├── 09.png
│ │ │ │ ├── PEOPLE.jpg
│ │ │ │ ├── 主界面.bmp
│ │ │ │ ├── 备份.bmp
│ │ │ │ └── 登录.bmp
│ │ │ ├── InfoAddForm
│ │ │ │ ├── F_Address.cs
│ │ │ │ ├── F_Address.designer.cs
│ │ │ │ ├── F_Address.resx
│ │ │ │ ├── F_Basic.cs
│ │ │ │ ├── F_Basic.designer.cs
│ │ │ │ ├── F_Basic.resx
│ │ │ │ ├── F_ClewSet.cs
│ │ │ │ ├── F_ClewSet.designer.cs
│ │ │ │ └── F_ClewSet.resx
│ │ │ ├── ModuleClass
│ │ │ │ └── MyModule.cs
│ │ │ ├── PerForm
│ │ │ │ ├── F_AddressList.cs
│ │ │ │ ├── F_AddressList.designer.cs
│ │ │ │ ├── F_AddressList.resx
│ │ │ │ ├── F_ClearData.cs
│ │ │ │ ├── F_ClearData.designer.cs
│ │ │ │ ├── F_ClearData.resx
│ │ │ │ ├── F_Find.cs
│ │ │ │ ├── F_Find.designer.cs
│ │ │ │ ├── F_Find.resx
│ │ │ │ ├── F_HaveBack.cs
│ │ │ │ ├── F_HaveBack.designer.cs
│ │ │ │ ├── F_HaveBack.resx
│ │ │ │ ├── F_ManFile.cs
│ │ │ │ ├── F_ManFile.designer.cs
│ │ │ │ ├── F_ManFile.resx
│ │ │ │ ├── F_Stat.cs
│ │ │ │ ├── F_Stat.designer.cs
│ │ │ │ ├── F_Stat.resx
│ │ │ │ ├── F_UserAdd.cs
│ │ │ │ ├── F_UserAdd.designer.cs
│ │ │ │ ├── F_UserAdd.resx
│ │ │ │ ├── F_User.cs
│ │ │ │ ├── F_User.designer.cs
│ │ │ │ ├── F_UserPope.cs
│ │ │ │ ├── F_UserPope.designer.cs
│ │ │ │ ├── F_UserPope.resx
│ │ │ │ ├── F_User.resx
│ │ │ │ ├── F_WordPad.cs
│ │ │ │ ├── F_WordPad.designer.cs
│ │ │ │ └── F_WordPad.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── PWMS.csproj
│ │ ├── PWMSSetup
│ │ │ ├── Debug
│ │ │ │ ├── PWMSSetup.msi
│ │ │ │ └── setup.exe
│ │ │ ├── PWMSSetup.vdproj
│ │ │ └── Release
│ │ ├── PWMS.sln
│ │ └── PWMS.suo
│ └── 程序使用说明书.doc
├── 23
│ ├── houseAgency
│ │ ├── houseAgency
│ │ │ ├── BusinessM
│ │ │ │ ├── frmBargin.cs
│ │ │ │ ├── frmBargin.designer.cs
│ │ │ │ └── frmBargin.resx
│ │ │ ├── Database
│ │ │ │ ├── db_showHouse_Data.MDF
│ │ │ │ ├── db_showHouse_Log.LDF
│ │ │ │ └── 杀死进程的存储过程.sql
│ │ │ ├── frmMain.cs
│ │ │ ├── frmMain.designer.cs
│ │ │ ├── frmMain.resx
│ │ │ ├── frmUserLogin.cs
│ │ │ ├── frmUserLogin.designer.cs
│ │ │ ├── frmUserLogin.resx
│ │ │ ├── houseAgency.csproj
│ │ │ ├── Image
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── dl.jpg
│ │ │ │ ├── 修改.bmp
│ │ │ │ ├── 出租人员信息.png
│ │ │ │ ├── 删除.bmp
│ │ │ │ ├── 增加.bmp
│ │ │ │ ├── 成交量.png
│ │ │ │ ├── 房源查询.png
│ │ │ │ ├── 操作.bmp
│ │ │ │ ├── 收费记录.png
│ │ │ │ ├── 查询.bmp
│ │ │ │ └── 求租人信息.png
│ │ │ ├── mothedCls
│ │ │ │ ├── claFavorMethod.cs
│ │ │ │ ├── ClsCon.cs
│ │ │ │ ├── clsEmpleey.cs
│ │ │ │ ├── clsEmpleeyMethed.cs
│ │ │ │ ├── clsFavor.cs
│ │ │ │ ├── clsFitment.cs
│ │ │ │ ├── clsFitmentMethod.cs
│ │ │ │ ├── clsFloor.cs
│ │ │ │ ├── clsFloorMethod.cs
│ │ │ │ ├── clsgov.cs
│ │ │ │ ├── clsgovMethod.cs
│ │ │ │ ├── ClsHouse.cs
│ │ │ │ ├── ClsHouseMethed.cs
│ │ │ │ ├── clsIntend.cs
│ │ │ │ ├── clsIntendMethed.cs
│ │ │ │ ├── clsLogin.cs
│ │ │ │ ├── clsLoginMethed.cs
│ │ │ │ ├── clsMethed.cs
│ │ │ │ ├── clsMethedMethod.cs
│ │ │ │ ├── clsMoneyAndInfo.cs
│ │ │ │ ├── clsMoneyAndInfoMethod.cs
│ │ │ │ ├── clsSeat.cs
│ │ │ │ ├── clsSeatMethod.cs
│ │ │ │ ├── clsStudyDegree.cs
│ │ │ │ ├── clsStudyDegreeMethod.cs
│ │ │ │ ├── clstype.cs
│ │ │ │ ├── clstypeMethod.cs
│ │ │ │ ├── clsUser.cs
│ │ │ │ └── clsUserMethod.cs
│ │ │ ├── OutTenants
│ │ │ │ ├── frmFavor.cs
│ │ │ │ ├── frmFavor.designer.cs
│ │ │ │ ├── frmFavor.resx
│ │ │ │ ├── frmFitment.cs
│ │ │ │ ├── frmFitment.designer.cs
│ │ │ │ ├── frmFitment.resx
│ │ │ │ ├── frmFloor.cs
│ │ │ │ ├── frmFloor.designer.cs
│ │ │ │ ├── frmFloor.resx
│ │ │ │ ├── frmMothed.cs
│ │ │ │ ├── frmMothed.designer.cs
│ │ │ │ ├── frmMothed.resx
│ │ │ │ ├── frmSeat.cs
│ │ │ │ ├── frmSeat.designer.cs
│ │ │ │ ├── frmSeat.resx
│ │ │ │ ├── frmType.cs
│ │ │ │ ├── frmType.designer.cs
│ │ │ │ └── frmType.resx
│ │ │ ├── PayingM
│ │ │ │ ├── frmBackMoney.cs
│ │ │ │ ├── frmBackMoney.designer.cs
│ │ │ │ ├── frmBackMoney.resx
│ │ │ │ ├── frmMoney.cs
│ │ │ │ ├── frmMoney.designer.cs
│ │ │ │ └── frmMoney.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── SeekTenantsM
│ │ │ │ ├── frmHouse.cs
│ │ │ │ ├── frmHouse.designer.cs
│ │ │ │ ├── frmHouse.resx
│ │ │ │ ├── frmIntend.cs
│ │ │ │ ├── frmIntend.designer.cs
│ │ │ │ ├── frmIntendInfo.cs
│ │ │ │ ├── frmIntendInfo.designer.cs
│ │ │ │ ├── frmIntendInfo.resx
│ │ │ │ ├── frmIntend.resx
│ │ │ │ ├── frmOk.cs
│ │ │ │ ├── frmOk.designer.cs
│ │ │ │ ├── frmOk.resx
│ │ │ │ ├── frmSelect.cs
│ │ │ │ ├── frmSelect.designer.cs
│ │ │ │ ├── frmSelect.resx
│ │ │ │ ├── frmStateHouse.cs
│ │ │ │ ├── frmStateHouse.designer.cs
│ │ │ │ └── frmStateHouse.resx
│ │ │ ├── StaffInfor
│ │ │ │ ├── frmEmpleeyAll.cs
│ │ │ │ ├── frmEmpleeyAll.designer.cs
│ │ │ │ ├── frmEmpleeyAll.resx
│ │ │ │ ├── frmEmploeey.cs
│ │ │ │ ├── frmEmploeey.designer.cs
│ │ │ │ ├── frmEmploeey.resx
│ │ │ │ ├── frmGov.cs
│ │ │ │ ├── frmGov.designer.cs
│ │ │ │ ├── frmGov.resx
│ │ │ │ ├── frmStudyDegree.cs
│ │ │ │ ├── frmStudyDegree.designer.cs
│ │ │ │ └── frmStudyDegree.resx
│ │ │ ├── SystemM
│ │ │ │ ├── frmChangYouSelfPwd.cs
│ │ │ │ ├── frmChangYouSelfPwd.designer.cs
│ │ │ │ ├── frmChangYouSelfPwd.resx
│ │ │ │ ├── frmRestore.cs
│ │ │ │ ├── frmRestore.designer.cs
│ │ │ │ ├── frmRestore.resx
│ │ │ │ ├── frmStock.cs
│ │ │ │ ├── frmStock.designer.cs
│ │ │ │ └── frmStock.resx
│ │ │ └── UserInfor
│ │ │ ├── frmPeopleInfo.cs
│ │ │ ├── frmPeopleInfo.designer.cs
│ │ │ ├── frmPeopleInfo.resx
│ │ │ ├── frmPeopleList.cs
│ │ │ ├── frmPeopleList.designer.cs
│ │ │ └── frmPeopleList.resx
│ │ ├── houseAgency.sln
│ │ └── houseAgency.suo
│ └── 程序使用说明书.doc
├── 24
│ ├── EMS
│ │ ├── EMS
│ │ │ ├── BaseClass
│ │ │ │ ├── BaseInfo.cs
│ │ │ │ └── DataBase.cs
│ │ │ ├── BaseInfo
│ │ │ │ ├── frmEmployee.cs
│ │ │ │ ├── frmEmployee.designer.cs
│ │ │ │ ├── frmEmployee.resx
│ │ │ │ ├── frmStock.cs
│ │ │ │ ├── frmStock.designer.cs
│ │ │ │ ├── frmStock.resx
│ │ │ │ ├── frmUnits.cs
│ │ │ │ ├── frmUnits.designer.cs
│ │ │ │ └── frmUnits.resx
│ │ │ ├── BuyStock
│ │ │ │ ├── frmBuyStockAnalyse.cs
│ │ │ │ ├── frmBuyStockAnalyse.designer.cs
│ │ │ │ ├── frmBuyStockAnalyse.resx
│ │ │ │ ├── frmBuyStock.cs
│ │ │ │ ├── frmBuyStock.designer.cs
│ │ │ │ ├── frmBuyStock.resx
│ │ │ │ ├── frmBuyStockSum.cs
│ │ │ │ ├── frmBuyStockSum.designer.cs
│ │ │ │ ├── frmBuyStockSum.resx
│ │ │ │ ├── frmCurrentAccountBook.cs
│ │ │ │ ├── frmCurrentAccountBook.designer.cs
│ │ │ │ ├── frmCurrentAccountBook.resx
│ │ │ │ ├── frmRebuyStock.cs
│ │ │ │ ├── frmRebuyStock.designer.cs
│ │ │ │ ├── frmRebuyStock.resx
│ │ │ │ ├── frmUnitsList.cs
│ │ │ │ ├── frmUnitsList.designer.cs
│ │ │ │ └── frmUnitsList.resx
│ │ │ ├── Database
│ │ │ │ ├── db_EMS_log.ldf
│ │ │ │ └── db_EMS.mdf
│ │ │ ├── EMS.csproj
│ │ │ ├── frmLogin.cs
│ │ │ ├── frmLogin.designer.cs
│ │ │ ├── frmLogin.resx
│ │ │ ├── frmMain.cs
│ │ │ ├── frmMain.designer.cs
│ │ │ ├── frmMain.resx
│ │ │ ├── icon
│ │ │ │ ├── 001.ico
│ │ │ │ ├── 07.ico
│ │ │ │ ├── 162.ico
│ │ │ │ ├── 170.ico
│ │ │ │ ├── 171.ico
│ │ │ │ ├── 172.ico
│ │ │ │ ├── 23.ico
│ │ │ │ ├── 3.ico
│ │ │ │ ├── 42.ico
│ │ │ │ ├── 44.ico
│ │ │ │ ├── 45.ico
│ │ │ │ ├── 87.ico
│ │ │ │ ├── add.ico
│ │ │ │ ├── backup.ico
│ │ │ │ ├── cancle.ico
│ │ │ │ ├── check.ico
│ │ │ │ ├── close.bmp
│ │ │ │ ├── Close.ico
│ │ │ │ ├── delete.ico
│ │ │ │ ├── detailed.ico
│ │ │ │ ├── edit.ico
│ │ │ │ ├── exit.ico
│ │ │ │ ├── find.ico
│ │ │ │ ├── help.bmp
│ │ │ │ ├── help.ico
│ │ │ │ ├── h.ico
│ │ │ │ ├── internet.bmp
│ │ │ │ ├── internet.ico
│ │ │ │ ├── main.ico
│ │ │ │ ├── print.ico
│ │ │ │ ├── question.ico
│ │ │ │ ├── save.ico
│ │ │ │ ├── search.ico
│ │ │ │ ├── s.ico
│ │ │ │ └── z.ico
│ │ │ ├── Image
│ │ │ │ ├── 企业进销存主窗体.jpg
│ │ │ │ └── 企业进销存登录窗体.jpg
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ ├── SaleStock
│ │ │ │ ├── frmResellStock.cs
│ │ │ │ ├── frmResellStock.designer.cs
│ │ │ │ ├── frmResellStock.resx
│ │ │ │ ├── frmSellStockCost.cs
│ │ │ │ ├── frmSellStockCost.designer.cs
│ │ │ │ ├── frmSellStockCost.resx
│ │ │ │ ├── frmSellStock.cs
│ │ │ │ ├── frmSellStockDesc.cs
│ │ │ │ ├── frmSellStockDesc.designer.cs
│ │ │ │ ├── frmSellStockDesc.resx
│ │ │ │ ├── frmSellStock.designer.cs
│ │ │ │ ├── frmSellStockDetailed.cs
│ │ │ │ ├── frmSellStockDetailed.designer.cs
│ │ │ │ ├── frmSellStockDetailed.resx
│ │ │ │ ├── frmSellStock.resx
│ │ │ │ ├── frmSellStockStatus.cs
│ │ │ │ ├── frmSellStockStatus.designer.cs
│ │ │ │ ├── frmSellStockStatus.resx
│ │ │ │ ├── frmSellStockSum.cs
│ │ │ │ ├── frmSellStockSum.designer.cs
│ │ │ │ └── frmSellStockSum.resx
│ │ │ ├── SelectDataDialog
│ │ │ │ ├── frmSelectDateTime.cs
│ │ │ │ ├── frmSelectDateTime.designer.cs
│ │ │ │ ├── frmSelectDateTime.resx
│ │ │ │ ├── frmSelectHandle.cs
│ │ │ │ ├── frmSelectHandle.designer.cs
│ │ │ │ ├── frmSelectHandle.resx
│ │ │ │ ├── frmSelectOrderby.cs
│ │ │ │ ├── frmSelectOrderby.designer.cs
│ │ │ │ ├── frmSelectOrderby.resx
│ │ │ │ ├── frmSelectStock.cs
│ │ │ │ ├── frmSelectStock.designer.cs
│ │ │ │ ├── frmSelectStock.resx
│ │ │ │ ├── frmSelectUnits.cs
│ │ │ │ ├── frmSelectUnits.designer.cs
│ │ │ │ ├── frmSelectUnits.resx
│ │ │ │ ├── frmSetStockLimit.cs
│ │ │ │ ├── frmSetStockLimit.designer.cs
│ │ │ │ └── frmSetStockLimit.resx
│ │ │ ├── SetSystem
│ │ │ │ ├── frmBakup.cs
│ │ │ │ ├── frmBakup.designer.cs
│ │ │ │ ├── frmBakup.resx
│ │ │ │ ├── frmClearTable.cs
│ │ │ │ ├── frmClearTable.designer.cs
│ │ │ │ ├── frmClearTable.resx
│ │ │ │ ├── frmSetOP.cs
│ │ │ │ ├── frmSetOP.designer.cs
│ │ │ │ ├── frmSetOP.resx
│ │ │ │ ├── frmUnits.cs
│ │ │ │ ├── frmUnits.designer.cs
│ │ │ │ └── frmUnits.resx
│ │ │ └── Stock
│ │ │ ├── frmCheckStock.cs
│ │ │ ├── frmCheckStock.designer.cs
│ │ │ ├── frmCheckStock.resx
│ │ │ ├── frmLowerLimit.cs
│ │ │ ├── frmLowerLimit.designer.cs
│ │ │ ├── frmLowerLimit.resx
│ │ │ ├── frmStockStatus.cs
│ │ │ ├── frmStockStatus.designer.cs
│ │ │ ├── frmStockStatus.resx
│ │ │ ├── frmUpperLimit.cs
│ │ │ ├── frmUpperLimit.designer.cs
│ │ │ └── frmUpperLimit.resx
│ │ ├── EMS.sln
│ │ └── EMS.suo
│ └── 程序使用说明书.doc
├── Database
│ ├── db_CSharp_log.ldf
│ └── db_CSharp.mdf
└── 光盘使用说明.doc
2663 directories, 7198 files
【实例截图】
文件清单
├── 01
│ ├── qjyy
│ │ ├── 01
│ │ │ └── SetStartForm
│ │ │ ├── SetStartForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SetStartForm.csproj
│ │ │ ├── SetStartForm.sln
│ │ │ └── SetStartForm.suo
│ │ ├── 01_diy
│ │ │ └── StartTwoWindows
│ │ │ ├── StartTwoWindows
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StartTwoWindows.csproj
│ │ │ ├── StartTwoWindows.sln
│ │ │ └── StartTwoWindows.suo
│ │ ├── 02
│ │ │ └── SetSoftInfo
│ │ │ ├── SetSoftInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SetSoftInfo.csproj
│ │ │ ├── SetSoftInfo.sln
│ │ │ └── SetSoftInfo.suo
│ │ ├── 02_diy
│ │ │ └── SetVersionAndCompany
│ │ │ ├── SetVersionAndCompany
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SetVersionAndCompany.csproj
│ │ │ ├── SetVersionAndCompany.sln
│ │ │ └── SetVersionAndCompany.suo
│ │ ├── 03
│ │ │ └── AddForm
│ │ │ ├── AddForm
│ │ │ │ ├── AddForm.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── frmLogin.cs
│ │ │ │ ├── frmLogin.designer.cs
│ │ │ │ ├── frmLogin.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddForm.sln
│ │ │ └── AddForm.suo
│ │ ├── 03_diy
│ │ │ ├── AboutFormA
│ │ │ │ ├── AboutFormA
│ │ │ │ │ ├── AboutFormA.csproj
│ │ │ │ │ ├── FormA.cs
│ │ │ │ │ ├── FormA.Designer.cs
│ │ │ │ │ ├── FormA.resx
│ │ │ │ │ ├── FormB.cs
│ │ │ │ │ ├── FormB.Designer.cs
│ │ │ │ │ ├── FormB.resx
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ └── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── AboutFormA.sln
│ │ │ │ └── AboutFormA.suo
│ │ │ └── AboutFormB
│ │ │ ├── AboutFormB
│ │ │ │ ├── AboutFormB.csproj
│ │ │ │ ├── FormB.cs
│ │ │ │ ├── FormB.Designer.cs
│ │ │ │ ├── FormB.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AboutFormB.sln
│ │ │ └── AboutFormB.suo
│ │ ├── 04
│ │ │ └── MoveFontInForm
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MoveFontInForm.csproj
│ │ │ ├── MoveFontInForm.sln
│ │ │ ├── MoveFontInForm.suo
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ └── 05.jpg
│ │ ├── 04_diy
│ │ │ └── LocomotorTextBox
│ │ │ ├── LocomotorTextBox
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LocomotorTextBox.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LocomotorTextBox.sln
│ │ │ └── LocomotorTextBox.suo
│ │ ├── 05
│ │ │ └── AddCalculator
│ │ │ ├── AddCalculator
│ │ │ │ ├── AddCalculator.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddCalculator.sln
│ │ │ └── AddCalculator.suo
│ │ └── 05_diy
│ │ └── Subtracter
│ │ ├── Subtracter
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Subtracter.csproj
│ │ ├── Subtracter.sln
│ │ └── Subtracter.suo
│ └── zmhh
│ ├── 01
│ │ └── RunProgram
│ │ ├── RunProgram
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── RunProgram.csproj
│ │ ├── RunProgram.sln
│ │ └── RunProgram.suo
│ ├── 01_zmhh
│ │ └── RunWindows
│ │ ├── RunWindows
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RunWindows.csproj
│ │ ├── RunWindows.sln
│ │ └── RunWindows.suo
│ ├── 02
│ │ └── StopProgram
│ │ ├── StopProgram
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── StopProgram.csproj
│ │ ├── StopProgram.sln
│ │ └── StopProgram.suo
│ ├── 02_zmhh
│ │ └── StopWindows
│ │ ├── StopWindows
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── StopWindows.csproj
│ │ ├── StopWindows.sln
│ │ └── StopWindows.suo
│ ├── 04
│ │ └── SetFont
│ │ ├── SetFont
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetFont.csproj
│ │ ├── SetFont.sln
│ │ └── SetFont.suo
│ ├── 04_zmhh
│ │ └── SetFont
│ │ ├── SetFont
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetFont.csproj
│ │ ├── SetFont.sln
│ │ └── SetFont.suo
│ ├── 05
│ │ └── LayoutForm
│ │ ├── LayoutForm
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── LayoutForm.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LayoutForm.sln
│ │ └── LayoutForm.suo
│ └── 05_zmhh
│ └── SetTextBox
│ ├── SetTextBox
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── SetTextBox.csproj
│ ├── SetTextBox.sln
│ └── SetTextBox.suo
├── 02
│ ├── qjyy
│ │ ├── 01
│ │ │ └── Equal
│ │ │ ├── Equal
│ │ │ │ ├── Equal.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Equal.sln
│ │ │ └── Equal.suo
│ │ ├── 01_diy
│ │ │ └── UseIs
│ │ │ ├── UseIs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseIs.csproj
│ │ │ ├── UseIs.sln
│ │ │ └── UseIs.suo
│ │ ├── 02
│ │ │ └── Calculator
│ │ │ ├── Calculator
│ │ │ │ ├── Calculator.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Calculator.sln
│ │ │ └── Calculator.suo
│ │ ├── 02_diy
│ │ │ └── Calculator
│ │ │ ├── Calculator
│ │ │ │ ├── Calculator.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Calculator.sln
│ │ │ └── Calculator.suo
│ │ ├── 03
│ │ │ └── Encrypt
│ │ │ ├── Encrypt
│ │ │ │ ├── Encrypt.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Encrypt.sln
│ │ │ └── Encrypt.suo
│ │ ├── 03_diy
│ │ │ └── Encrypt
│ │ │ ├── Encrypt
│ │ │ │ ├── Encrypt.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Encrypt.sln
│ │ │ └── Encrypt.suo
│ │ ├── 04
│ │ │ └── GetCode
│ │ │ ├── GetCode
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── GetCode.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetCode.sln
│ │ │ └── GetCode.suo
│ │ ├── 04_diy
│ │ │ └── SkilfulOperator
│ │ │ ├── SkilfulOperator2
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SkilfulOperator2.csproj
│ │ │ ├── SkilfulOperator2.sln
│ │ │ └── SkilfulOperator2.suo
│ │ ├── 05
│ │ │ └── GetYear
│ │ │ ├── GetYear
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetYear.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetYear.sln
│ │ │ └── GetYear.suo
│ │ └── 05_diy
│ │ └── IsEven
│ │ ├── IsEven
│ │ │ ├── IsEven.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── IsEven.sln
│ │ └── IsEven.suo
│ ├── sl
│ │ ├── 2.01
│ │ │ └── Hello_World
│ │ │ ├── Hello_World
│ │ │ │ ├── Hello_World.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Hello_World.sln
│ │ │ └── Hello_World.suo
│ │ ├── 2.02
│ │ │ └── UseNameSpace
│ │ │ ├── UseNameSpace
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseNameSpace.csproj
│ │ │ ├── UseNameSpace.sln
│ │ │ └── UseNameSpace.suo
│ │ ├── 2.03
│ │ │ └── 2.03.txt
│ │ ├── 2.04
│ │ │ └── 2.04.txt
│ │ ├── 2.05
│ │ │ └── 2.05.txt
│ │ ├── 2.06
│ │ │ └── 2.06.txt
│ │ ├── 2.07
│ │ │ └── UseInt
│ │ │ ├── UseInt
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseInt.csproj
│ │ │ ├── UseInt.sln
│ │ │ └── UseInt.suo
│ │ ├── 2.08
│ │ │ └── 2.08.txt
│ │ ├── 2.09
│ │ │ └── 2.09.txt
│ │ ├── 2.10
│ │ │ └── 2.10.txt
│ │ ├── 2.11
│ │ │ └── UseReference
│ │ │ ├── UseReference
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseReference.csproj
│ │ │ ├── UseReference.sln
│ │ │ └── UseReference.suo
│ │ ├── 2.12
│ │ │ └── 2.12.txt
│ │ ├── 2.13
│ │ │ └── 2.13.txt
│ │ ├── 2.14
│ │ │ └── 2.14.txt
│ │ ├── 2.15
│ │ │ └── 2.15.txt
│ │ ├── 2.16
│ │ │ └── VarField
│ │ │ ├── VarField
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── VarField.csproj
│ │ │ ├── VarField.sln
│ │ │ └── VarField.suo
│ │ ├── 2.17
│ │ │ └── 2.17.txt
│ │ ├── 2.18
│ │ │ └── UseConst
│ │ │ ├── UseConst
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseConst.csproj
│ │ │ ├── UseConst.sln
│ │ │ └── UseConst.suo
│ │ ├── 2.19
│ │ │ └── 2.19.txt
│ │ ├── 2.20
│ │ │ └── ShowConvert
│ │ │ ├── ShowConvert
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── ShowConvert.csproj
│ │ │ ├── ShowConvert.sln
│ │ │ └── ShowConvert.suo
│ │ ├── 2.21
│ │ │ └── 2.21.txt
│ │ ├── 2.22
│ │ │ └── UpBox
│ │ │ ├── UpBox
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UpBox.csproj
│ │ │ ├── UpBox.sln
│ │ │ └── UpBox.suo
│ │ ├── 2.23
│ │ │ └── DownBox
│ │ │ ├── DownBox
│ │ │ │ ├── DownBox.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── DownBox.sln
│ │ │ └── DownBox.suo
│ │ ├── 2.24
│ │ │ └── UserAdd
│ │ │ ├── UserAdd
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UserAdd.csproj
│ │ │ ├── UserAdd.sln
│ │ │ └── UserAdd.suo
│ │ ├── 2.25
│ │ │ └── UseSub
│ │ │ ├── UseSub
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseSub.csproj
│ │ │ ├── UseSub.sln
│ │ │ └── UseSub.suo
│ │ ├── 2.26
│ │ │ └── UseMul
│ │ │ ├── UseMul
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseMul.csproj
│ │ │ ├── UseMul.sln
│ │ │ └── UseMul.suo
│ │ ├── 2.27
│ │ │ └── UseDiv
│ │ │ ├── UseDiv
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDiv.csproj
│ │ │ ├── UseDiv.sln
│ │ │ └── UseDiv.suo
│ │ ├── 2.28
│ │ │ └── UseRes
│ │ │ ├── UseRes
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseRes.csproj
│ │ │ ├── UseRes.sln
│ │ │ └── UseRes.suo
│ │ ├── 2.29
│ │ │ └── UseAddEva
│ │ │ ├── UseAddEva
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseAddEva.csproj
│ │ │ ├── UseAddEva.sln
│ │ │ └── UseAddEva.suo
│ │ ├── 2.30
│ │ │ └── UseDD
│ │ │ ├── UseDD
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDD.csproj
│ │ │ ├── UseDD.sln
│ │ │ └── UseDD.suo
│ │ ├── 2.31
│ │ │ └── UseBD
│ │ │ ├── UseBD
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBD.csproj
│ │ │ ├── UseBD.sln
│ │ │ └── UseBD.suo
│ │ ├── 2.32
│ │ │ └── UseXY
│ │ │ ├── UseXY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseXY.csproj
│ │ │ ├── UseXY.sln
│ │ │ └── UseXY.suo
│ │ ├── 2.33
│ │ │ └── UseDY
│ │ │ ├── UseDY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDY.csproj
│ │ │ ├── UseDY.sln
│ │ │ └── UseDY.suo
│ │ ├── 2.34
│ │ │ └── UseXYDY
│ │ │ ├── UseXYDY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseXYDY.csproj
│ │ │ ├── UseXYDY.sln
│ │ │ └── UseXYDY.suo
│ │ ├── 2.35
│ │ │ └── UseDYDY
│ │ │ ├── UseDYDY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDYDY.csproj
│ │ │ ├── UseDYDY.sln
│ │ │ └── UseDYDY.suo
│ │ ├── 2.36
│ │ │ └── UseWY
│ │ │ ├── UseWY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWY.csproj
│ │ │ ├── UseWY.sln
│ │ │ └── UseWY.suo
│ │ ├── 2.37
│ │ │ └── UseWH
│ │ │ ├── UseWH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWH.csproj
│ │ │ ├── UseWH.sln
│ │ │ └── UseWH.suo
│ │ ├── 2.38
│ │ │ └── UseWYH
│ │ │ ├── UseWYH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWYH.csproj
│ │ │ ├── UseWYH.sln
│ │ │ └── UseWYH.suo
│ │ ├── 2.39
│ │ │ └── UseBEY
│ │ │ ├── UseBEY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBEY.csproj
│ │ │ ├── UseBEY.sln
│ │ │ └── UseBEY.suo
│ │ ├── 2.40
│ │ │ └── UseBEH
│ │ │ ├── UseBEH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBEH.csproj
│ │ │ ├── UseBEH.sln
│ │ │ └── UseBEH.suo
│ │ ├── 2.41
│ │ │ └── UseBEYH
│ │ │ ├── UseBEYH
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseBEYH.csproj
│ │ │ ├── UseBEYH.sln
│ │ │ └── UseBEYH.suo
│ │ ├── 2.42
│ │ │ └── UseZYW
│ │ │ ├── UseZYW
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseZYW.csproj
│ │ │ ├── UseZYW.sln
│ │ │ └── UseZYW.suo
│ │ ├── 2.43
│ │ │ └── UseYYW
│ │ │ ├── UseYYW
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseYYW.csproj
│ │ │ ├── UseYYW.sln
│ │ │ └── UseYYW.suo
│ │ ├── 2.44
│ │ │ └── UseIS
│ │ │ ├── UseIS
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseIS.csproj
│ │ │ ├── UseIS.sln
│ │ │ └── UseIS.suo
│ │ ├── 2.45
│ │ │ └── UseTJ
│ │ │ ├── UseTJ
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseTJ.csproj
│ │ │ ├── UseTJ.sln
│ │ │ └── UseTJ.suo
│ │ ├── 2.46
│ │ │ └── UseNEW
│ │ │ ├── UseNEW
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseNEW.csproj
│ │ │ ├── UseNEW.sln
│ │ │ └── UseNEW.suo
│ │ └── 2.47
│ │ └── UseTypeOf
│ │ ├── UseTypeOf
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseTypeOf.csproj
│ │ ├── UseTypeOf.sln
│ │ └── UseTypeOf.suo
│ └── zmhh
│ ├── 01
│ │ └── Code Commentate
│ │ ├── Code Commentate
│ │ │ ├── Code Commentate.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Code Commentate.sln
│ │ └── Code Commentate.suo
│ ├── 01_zmhh
│ │ └── WindowsCommentate
│ │ ├── WindowsCommentate
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WindowsCommentate.csproj
│ │ ├── WindowsCommentate.sln
│ │ └── WindowsCommentate.suo
│ ├── 02
│ │ └── GetString
│ │ ├── GetString
│ │ │ ├── frm_Main.cs
│ │ │ ├── frm_Main.Designer.cs
│ │ │ ├── frm_Main.resx
│ │ │ ├── GetString.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetString.sln
│ │ └── GetString.suo
│ ├── 02_zmhh
│ │ └── InvertedComma
│ │ ├── InvertedComma
│ │ │ ├── InvertedComma.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── InvertedComma.sln
│ │ └── InvertedComma.suo
│ ├── 03
│ │ └── Checked
│ │ ├── Checked
│ │ │ ├── Checked.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Checked.sln
│ │ └── Checked.suo
│ ├── 03_zmhh
│ │ └── CheckedSbyte
│ │ ├── CheckedSbyte
│ │ │ ├── CheckedSbyte.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CheckedSbyte.sln
│ │ └── CheckedSbyte.suo
│ ├── 04
│ │ └── TypeOf
│ │ ├── TypeOf
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── TypeOf.csproj
│ │ ├── TypeOf.sln
│ │ └── TypeOf.suo
│ ├── 04_zmhh
│ │ └── GetObjectInfo
│ │ ├── GetObjectInfo
│ │ │ ├── GetObjectInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetObjectInfo.sln
│ │ └── GetObjectInfo.suo
│ ├── 05
│ │ └── Using
│ │ ├── Using
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Using.csproj
│ │ ├── Using.sln
│ │ └── Using.suo
│ └── 05_zmhh
│ └── UseUsing
│ ├── UseUsing
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── UseUsing.csproj
│ ├── UseUsing.sln
│ └── UseUsing.suo
├── 03
│ ├── qjyy
│ │ ├── 01
│ │ │ └── Arithmetic
│ │ │ ├── Arithmetic
│ │ │ │ ├── Arithmetic.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Arithmetic.sln
│ │ │ └── Arithmetic.suo
│ │ ├── 01_diy
│ │ │ └── Recursion
│ │ │ ├── Recursion
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── Recursion.csproj
│ │ │ │ └── Recursion.csproj.user
│ │ │ ├── Recursion.sln
│ │ │ └── Recursion.suo
│ │ ├── 02
│ │ │ └── IfThenElse
│ │ │ ├── IfThenElse
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── IfThenElse.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IfThenElse.sln
│ │ │ ├── IfThenElse.suo
│ │ │ ├── IfThenElse.vsmdi
│ │ │ ├── LocalTestRun.testrunconfig
│ │ │ └── TestProject1
│ │ │ ├── AuthoringTests.txt
│ │ │ ├── Form1Test.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TestProject1.csproj
│ │ │ └── 测试引用
│ │ │ └── IfThenElse.accessor
│ │ ├── 02_diy
│ │ │ └── JudgePayManner
│ │ │ ├── JudgePayManner
│ │ │ │ ├── JudgePayManner.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── JudgePayManner.sln
│ │ │ └── JudgePayManner.suo
│ │ ├── 03
│ │ │ └── SelectColor
│ │ │ ├── SelectColor
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SelectColor.csproj
│ │ │ ├── SelectColor.sln
│ │ │ └── SelectColor.suo
│ │ ├── 03_diy
│ │ │ └── Grade
│ │ │ ├── Grade
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Grade.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Grade.sln
│ │ │ └── Grade.suo
│ │ ├── 04
│ │ │ └── Goto
│ │ │ ├── Goto
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Goto.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Goto.sln
│ │ │ └── Goto.suo
│ │ ├── 04_diy
│ │ │ └── FindItem
│ │ │ ├── FindItem.sln
│ │ │ ├── FindItem.suo
│ │ │ └── Goto
│ │ │ ├── FindItem.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── 05
│ │ │ └── NumGame
│ │ │ ├── NumGame
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── NumGame.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NumGame.sln
│ │ │ └── NumGame.suo
│ │ └── 05_diy
│ │ └── GoldBach
│ │ ├── GoldBach
│ │ │ ├── GoldBach.csproj
│ │ │ ├── GoldBach.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GoldBach.sln
│ │ └── GoldBach.suo
│ ├── sl
│ │ ├── 3.01
│ │ │ └── EightQueen
│ │ │ ├── EightQueen
│ │ │ │ ├── EightQueen.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── EightQueen.sln
│ │ │ └── EightQueen.suo
│ │ ├── 3.02
│ │ │ └── 3.02.txt
│ │ ├── 3.03
│ │ │ └── UseIF
│ │ │ ├── UseIF
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseIF.csproj
│ │ │ ├── UseIF.sln
│ │ │ └── UseIF.suo
│ │ ├── 3.04
│ │ │ └── UseElseif
│ │ │ ├── UseElseif
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseElseif.csproj
│ │ │ ├── UseElseif.sln
│ │ │ └── UseElseif.suo
│ │ ├── 3.05
│ │ │ └── QTIF
│ │ │ ├── QTIF
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── QTIF.csproj
│ │ │ ├── QTIF.sln
│ │ │ └── QTIF.suo
│ │ ├── 3.06
│ │ │ └── UseSwitch
│ │ │ ├── UseSwitch
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseSwitch.csproj
│ │ │ ├── UseSwitch.sln
│ │ │ └── UseSwitch.suo
│ │ ├── 3.07
│ │ │ └── IfToSwitch
│ │ │ ├── IfToSwitch
│ │ │ │ ├── IfToSwitch.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── IfToSwitch.sln
│ │ │ └── IfToSwitch.suo
│ │ ├── 3.08
│ │ │ └── UseWhile
│ │ │ ├── UseWhile
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseWhile.csproj
│ │ │ ├── UseWhile.sln
│ │ │ └── UseWhile.suo
│ │ ├── 3.09
│ │ │ └── BCWhile
│ │ │ ├── BCWhile
│ │ │ │ ├── BCWhile.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BCWhile.sln
│ │ │ └── BCWhile.suo
│ │ ├── 3.10
│ │ │ └── UseDoWhile
│ │ │ ├── UseDoWhile
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDoWhile.csproj
│ │ │ ├── UseDoWhile.sln
│ │ │ └── UseDoWhile.suo
│ │ ├── 3.11
│ │ │ └── UseFor
│ │ │ ├── UseFor
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseFor.csproj
│ │ │ ├── UseFor.sln
│ │ │ └── UseFor.suo
│ │ ├── 3.12
│ │ │ └── UseForeach
│ │ │ ├── UseForeach
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseForeach.csproj
│ │ │ ├── UseForeach.sln
│ │ │ └── UseForeach.suo
│ │ ├── 3.13
│ │ │ └── BreakToSwitch
│ │ │ ├── BreakToSwitch
│ │ │ │ ├── BreakToSwitch.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BreakToSwitch.sln
│ │ │ └── BreakToSwitch.suo
│ │ ├── 3.14
│ │ │ └── BreakToFor
│ │ │ ├── BreakToFor
│ │ │ │ ├── BreakToFor.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BreakToFor.sln
│ │ │ └── BreakToFor.suo
│ │ ├── 3.15
│ │ │ └── UseContinue
│ │ │ ├── UseContinue
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseContinue.csproj
│ │ │ ├── UseContinue.sln
│ │ │ └── UseContinue.suo
│ │ ├── 3.16
│ │ │ └── UseGoto
│ │ │ ├── UseGoto
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseGoto.csproj
│ │ │ ├── UseGoto.sln
│ │ │ └── UseGoto.suo
│ │ └── 3.17
│ │ └── UseReturn
│ │ ├── UseReturn
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseReturn.csproj
│ │ ├── UseReturn.sln
│ │ └── UseReturn.suo
│ └── zmhh
│ ├── 01
│ │ └── InputMessage
│ │ ├── InputMessage
│ │ │ ├── InputMessage.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── InputMessage.sln
│ │ └── InputMessage.suo
│ ├── 01_zmhh
│ │ └── OutputNum
│ │ ├── OutputNum
│ │ │ ├── OutputNum.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── OutputNum.sln
│ │ └── OutputNum.suo
│ ├── 02
│ │ └── ConvertLowerToUpper
│ │ ├── ConvertLowerToUpper
│ │ │ ├── ConvertLowerToUpper.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConvertLowerToUpper.sln
│ │ └── ConvertLowerToUpper.suo
│ ├── 02_zmhh
│ │ └── ConvertUpperToLower
│ │ ├── ConvertLowerToUpper.suo
│ │ ├── ConvertUpperToLower
│ │ │ ├── ConvertUpperToLower.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConvertUpperToLower.sln
│ │ └── ConvertUpperToLower.suo
│ ├── 03
│ │ └── CockSort
│ │ ├── CockSort
│ │ │ ├── CockSort.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CockSort.sln
│ │ └── CockSort.suo
│ ├── 03_zmhh
│ │ └── BubbleUp
│ │ ├── BubbleUp
│ │ │ ├── BubbleUp.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── BubbleUp.sln
│ │ └── BubbleUp.suo
│ ├── 04
│ │ └── Login
│ │ ├── Login
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Login.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Login.sln
│ │ └── Login.suo
│ ├── 04_zmhh
│ │ └── Login
│ │ ├── Login
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Login.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Login.sln
│ │ └── Login.suo
│ ├── 05
│ │ └── WhichWay
│ │ ├── WhichWay
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WhichWay.csproj
│ │ ├── WhichWay.sln
│ │ └── WhichWay.suo
│ └── 05_zmhh
│ └── WhichWay
│ ├── WhichWay
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── WhichWay.csproj
│ ├── WhichWay.sln
│ └── WhichWay.suo
├── 04
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ASCII
│ │ │ ├── ASCII
│ │ │ │ ├── ASCII.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ASCII.sln
│ │ │ └── ASCII.suo
│ │ ├── 01_diy
│ │ │ └── ASCII
│ │ │ ├── ASCII
│ │ │ │ ├── ASCII.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ASCII.sln
│ │ │ └── ASCII.suo
│ │ ├── 02
│ │ │ └── ChineseToABC
│ │ │ ├── ChineseToABC
│ │ │ │ ├── ChineseToABC.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── PinYin.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChineseToABC.sln
│ │ │ └── ChineseToABC.suo
│ │ ├── 02_diy
│ │ │ └── ChineseCode
│ │ │ ├── ChineseCode
│ │ │ │ ├── ChineseCode.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChineseCode.sln
│ │ │ └── ChineseCode.suo
│ │ ├── 03
│ │ │ └── ReplaceString
│ │ │ ├── ReplaceString
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ReplaceString.csproj
│ │ │ ├── ReplaceString.sln
│ │ │ └── ReplaceString.suo
│ │ ├── 03_diy
│ │ │ └── SearchString
│ │ │ ├── SearchString
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SearchString.csproj
│ │ │ ├── SearchString.sln
│ │ │ └── SearchString.suo
│ │ ├── 04
│ │ │ └── StringEncrypt
│ │ │ ├── StringEncrypt
│ │ │ │ ├── Encrypt.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StringEncrypt.csproj
│ │ │ ├── StringEncrypt.sln
│ │ │ └── StringEncrypt.suo
│ │ ├── 04_diy
│ │ │ └── Encrypt
│ │ │ ├── Encrypt
│ │ │ │ ├── Encrypt.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Encrypt.sln
│ │ │ └── Encrypt.suo
│ │ ├── 05
│ │ │ └── Conversion
│ │ │ ├── Conversion
│ │ │ │ ├── Conversion.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Transform.cs
│ │ │ ├── Conversion.sln
│ │ │ └── Conversion.suo
│ │ └── 05_diy
│ │ └── Conversion
│ │ ├── Conversion
│ │ │ ├── Conversion.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Conversion.sln
│ │ └── Conversion.suo
│ ├── sl
│ │ ├── 4.01
│ │ │ └── 4.01.txt
│ │ ├── 4.02
│ │ │ └── UseChar
│ │ │ ├── UseChar
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseChar.csproj
│ │ │ ├── UseChar.sln
│ │ │ └── UseChar.suo
│ │ ├── 4.03
│ │ │ └── UseZY
│ │ │ ├── UseZY
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseZY.csproj
│ │ │ ├── UseZY.sln
│ │ │ └── UseZY.suo
│ │ ├── 4.04
│ │ │ └── 4.04.txt
│ │ ├── 4.05
│ │ │ └── 4.05.txt
│ │ ├── 4.06
│ │ │ └── CompareString
│ │ │ ├── CompareString
│ │ │ │ ├── CompareString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CompareString.sln
│ │ │ └── CompareString.suo
│ │ ├── 4.07
│ │ │ └── CompareToString
│ │ │ ├── CompareToString
│ │ │ │ ├── CompareToString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CompareToString.sln
│ │ │ └── CompareToString.suo
│ │ ├── 4.08
│ │ │ └── EqualsString
│ │ │ ├── EqualsString
│ │ │ │ ├── EqualsString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── EqualsString.sln
│ │ │ └── EqualsString.suo
│ │ ├── 4.09
│ │ │ └── FormatString
│ │ │ ├── FormatString
│ │ │ │ ├── FormatString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── FormatString.sln
│ │ │ └── FormatString.suo
│ │ ├── 4.10
│ │ │ └── OutDate
│ │ │ ├── OutDate
│ │ │ │ ├── OutDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── OutDate.sln
│ │ │ └── OutDate.suo
│ │ ├── 4.11
│ │ │ └── SubString
│ │ │ ├── SubString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SubString.csproj
│ │ │ ├── SubString.sln
│ │ │ └── SubString.suo
│ │ ├── 4.12
│ │ │ └── SplitString
│ │ │ ├── SplitString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SplitString.csproj
│ │ │ ├── SplitString.sln
│ │ │ └── SplitString.suo
│ │ ├── 4.13
│ │ │ └── InsertString
│ │ │ ├── InsertString
│ │ │ │ ├── InsertString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── InsertString.sln
│ │ │ └── InsertString.suo
│ │ ├── 4.14
│ │ │ └── PadString
│ │ │ ├── PadString
│ │ │ │ ├── PadString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── PadString.sln
│ │ │ └── PadString.suo
│ │ ├── 4.15
│ │ │ └── RemoveString
│ │ │ ├── RemoveString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── RemoveString.csproj
│ │ │ ├── RemoveString.sln
│ │ │ └── RemoveString.suo
│ │ ├── 4.16
│ │ │ └── CopyString
│ │ │ ├── CopyString
│ │ │ │ ├── CopyString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CopyString.sln
│ │ │ └── CopyString.suo
│ │ ├── 4.17
│ │ │ └── CopyToString
│ │ │ ├── CopyToString
│ │ │ │ ├── CopyToString.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CopyToString.sln
│ │ │ └── CopyToString.suo
│ │ ├── 4.18
│ │ │ └── ReplaceString
│ │ │ ├── ReplaceString
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── ReplaceString.csproj
│ │ │ ├── ReplaceString.sln
│ │ │ └── ReplaceString.suo
│ │ ├── 4.19
│ │ │ └── 4.19.txt
│ │ ├── 4.20
│ │ │ └── UseStringBuilder
│ │ │ ├── UseStringBuilder
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseStringBuilder.csproj
│ │ │ ├── UseStringBuilder.sln
│ │ │ └── UseStringBuilder.suo
│ │ └── 4.21
│ │ └── 4.21.txt
│ └── zmhh
│ ├── 01
│ │ └── UserName
│ │ ├── UserName
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UserName.csproj
│ │ ├── UserName.sln
│ │ └── UserName.suo
│ ├── 01_zmhh
│ │ └── UserName
│ │ ├── UserName
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UserName.csproj
│ │ ├── UserName.sln
│ │ └── UserName.suo
│ ├── 02
│ │ └── ReverseStr
│ │ ├── ReverseStr
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReverseStr.csproj
│ │ ├── ReverseStr.sln
│ │ └── ReverseStr.suo
│ ├── 02_zmhh
│ │ └── ReverseStr
│ │ ├── ReverseStr
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReverseStr.csproj
│ │ ├── ReverseStr.sln
│ │ └── ReverseStr.suo
│ ├── 03
│ │ └── RemoveBlank
│ │ ├── RemoveBlank
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RemoveBlank.csproj
│ │ ├── RemoveBlank.sln
│ │ └── RemoveBlank.suo
│ ├── 03_zmhh
│ │ └── RemoveBlank
│ │ ├── RemoveBlank
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RemoveBlank.csproj
│ │ ├── RemoveBlank.sln
│ │ └── RemoveBlank.suo
│ ├── 04
│ │ └── GetCount
│ │ ├── GetCount
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetCount.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetCount.sln
│ │ └── GetCount.suo
│ ├── 04_zmhh
│ │ └── GetCount
│ │ ├── GetCount
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetCount.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetCount.sln
│ │ └── GetCount.suo
│ ├── 05
│ │ └── FilePathString
│ │ ├── FilePathString
│ │ │ ├── FilePathString.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FilePathString.sln
│ │ └── FilePathString.suo
│ └── 05_zmhh
│ └── FilePathString
│ ├── FilePathString
│ │ ├── FilePathString.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── FilePathString.sln
│ └── FilePathString.suo
├── 05
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ConsoleApplication1
│ │ │ ├── ConsoleApplication1
│ │ │ │ ├── ConsoleApplication1.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ConsoleApplication1.sln
│ │ │ └── ConsoleApplication1.suo
│ │ ├── 01_diy
│ │ │ └── ConsoleApplication1
│ │ │ ├── ConsoleApplication1
│ │ │ │ ├── ConsoleApplication1.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ConsoleApplication1.sln
│ │ │ └── ConsoleApplication1.suo
│ │ ├── 02
│ │ │ └── YSFHResult
│ │ │ ├── YSFHResult
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── YSFHResult.csproj
│ │ │ ├── YSFHResult.sln
│ │ │ └── YSFHResult.suo
│ │ ├── 02_diy
│ │ │ └── CockSort
│ │ │ ├── CockSort
│ │ │ │ ├── CockSort.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CockSort.sln
│ │ │ └── CockSort.suo
│ │ ├── 03
│ │ │ └── AddStudentINList
│ │ │ ├── AddStudentINList
│ │ │ │ ├── AddStudentINList.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddStudentINList.sln
│ │ │ └── AddStudentINList.suo
│ │ ├── 03_diy
│ │ │ └── AddStudentINList
│ │ │ ├── AddStudentINList
│ │ │ │ ├── AddStudentINList.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddStudentINList.sln
│ │ │ └── AddStudentINList.suo
│ │ ├── 04
│ │ │ └── SelectXMLByHasTable
│ │ │ ├── SelectXMLByHasTable
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SelectXMLByHasTable.csproj
│ │ │ ├── SelectXMLByHasTable.sln
│ │ │ └── SelectXMLByHasTable.suo
│ │ ├── 04_diy
│ │ │ └── SelectXMLByHasTable
│ │ │ ├── SelectXMLByHasTable
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SelectXMLByHasTable.csproj
│ │ │ ├── SelectXMLByHasTable.sln
│ │ │ └── SelectXMLByHasTable.suo
│ │ ├── 05
│ │ │ └── ConsoleApplication1
│ │ │ ├── ConsoleApplication1
│ │ │ │ ├── ConsoleApplication1.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ConsoleApplication1.sln
│ │ │ └── ConsoleApplication1.suo
│ │ └── 05_diy
│ │ └── ConsoleApplication1
│ │ ├── ConsoleApplication1
│ │ │ ├── ConsoleApplication1.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConsoleApplication1.sln
│ │ └── ConsoleApplication1.suo
│ ├── sl
│ │ ├── 5.01
│ │ │ └── 5.01.txt
│ │ ├── 5.02
│ │ │ └── 5.02.txt
│ │ ├── 5.03
│ │ │ └── 5.03.txt
│ │ ├── 5.04
│ │ │ └── 5.04.txt
│ │ ├── 5.05
│ │ │ └── 5.05.txt
│ │ ├── 5.06
│ │ │ └── UseOneArray
│ │ │ ├── UseOneArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseOneArray.csproj
│ │ │ ├── UseOneArray.sln
│ │ │ └── UseOneArray.suo
│ │ ├── 5.07
│ │ │ └── 5.07.txt
│ │ ├── 5.08
│ │ │ └── 5.08.txt
│ │ ├── 5.09
│ │ │ └── 5.09.txt
│ │ ├── 5.10
│ │ │ └── UseTwoArray
│ │ │ ├── UseTwoArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseTwoArray.csproj
│ │ │ ├── UseTwoArray.sln
│ │ │ └── UseTwoArray.suo
│ │ ├── 5.11
│ │ │ └── 5.11.txt
│ │ ├── 5.12
│ │ │ └── UseDYNArray
│ │ │ ├── UseDYNArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDYNArray.csproj
│ │ │ ├── UseDYNArray.sln
│ │ │ └── UseDYNArray.suo
│ │ ├── 5.13
│ │ │ └── 5.13.txt
│ │ ├── 5.14
│ │ │ └── 5.14.txt
│ │ ├── 5.15
│ │ │ └── CombinArray
│ │ │ ├── CombinArray
│ │ │ │ ├── CombinArray.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CombinArray.sln
│ │ │ └── CombinArray.suo
│ │ ├── 5.16
│ │ │ └── SplitArray
│ │ │ ├── SplitArray
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SplitArray.csproj
│ │ │ ├── SplitArray.sln
│ │ │ └── SplitArray.suo
│ │ ├── 5.17
│ │ │ └── 5.17.txt
│ │ ├── 5.18
│ │ │ └── 5.18.txt
│ │ ├── 5.19
│ │ │ └── 5.19.txt
│ │ ├── 5.20
│ │ │ └── 5.20.txt
│ │ ├── 5.21
│ │ │ └── 5.21.txt
│ │ ├── 5.22
│ │ │ └── AddArrayList
│ │ │ ├── AddArrayList
│ │ │ │ ├── AddArrayList.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── AddArrayList.sln
│ │ │ └── AddArrayList.suo
│ │ ├── 5.23
│ │ │ └── 5.23.txt
│ │ ├── 5.24
│ │ │ └── 5.24.txt
│ │ ├── 5.25
│ │ │ └── 5.25.txt
│ │ ├── 5.26
│ │ │ └── 5.26.txt
│ │ ├── 5.27
│ │ │ └── RemoveArrayList
│ │ │ ├── RemoveArrayList
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── RemoveArrayList.csproj
│ │ │ ├── RemoveArrayList.sln
│ │ │ └── RemoveArrayList.suo
│ │ ├── 5.28
│ │ │ └── GetArrayList
│ │ │ ├── GetArrayList
│ │ │ │ ├── GetArrayList.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── GetArrayList.sln
│ │ │ └── GetArrayList.suo
│ │ ├── 5.29
│ │ │ └── 5.29.txt
│ │ ├── 5.30
│ │ │ └── 5.30.txt
│ │ └── 5.31
│ │ └── 5.31.txt
│ └── zmhh
│ ├── 01
│ │ └── ArrayRank
│ │ ├── ArrayRank
│ │ │ ├── ArrayRank.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ArrayRank.sln
│ │ └── ArrayRank.suo
│ ├── 01_zmhh
│ │ └── ArrayRank
│ │ ├── ArrayRank
│ │ │ ├── ArrayRank.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ArrayRank.sln
│ │ └── ArrayRank.suo
│ ├── 02
│ │ └── FindStr
│ │ ├── FindStr
│ │ │ ├── FindStr.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindStr.sln
│ │ └── FindStr.suo
│ ├── 02_zmhh
│ │ └── FindStr
│ │ ├── FindStr
│ │ │ ├── FindStr.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindStr.sln
│ │ └── FindStr.suo
│ ├── 03
│ │ └── AddElementInArray
│ │ ├── AddElementInArray
│ │ │ ├── AddElementInArray.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddElementInArray.sln
│ │ └── AddElementInArray.suo
│ ├── 03_zmhh
│ │ └── AddArrayInArray
│ │ ├── AddArrayInArray
│ │ │ ├── AddArrayInArray.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddArrayInArray.sln
│ │ └── AddArrayInArray.suo
│ ├── 04
│ │ └── DelArrayNoLength
│ │ ├── DelArrayNoLength
│ │ │ ├── DelArrayNoLength.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DelArrayNoLength.sln
│ │ └── DelArrayNoLength.suo
│ ├── 04_zmhh
│ │ └── DelArrayNoLength
│ │ ├── DelArrayNoLength
│ │ │ ├── DelArrayNoLength.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DelArrayNoLength.sln
│ │ └── DelArrayNoLength.suo
│ ├── 05
│ │ └── DelArrayYesLength
│ │ ├── DelArrayYesLength
│ │ │ ├── DelArrayYesLength.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DelArrayYesLength.sln
│ │ └── DelArrayYesLength.suo
│ └── 05_zmhh
│ └── DelArrayYesLength
│ ├── DelArrayYesLength
│ │ ├── DelArrayYesLength.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── DelArrayYesLength.sln
│ └── DelArrayYesLength.suo
├── 06
│ ├── qjyy
│ │ ├── 01
│ │ │ └── IDCardRemove
│ │ │ ├── IDCardRemove
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IDCardRemove.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IDCardRemove.sln
│ │ │ └── IDCardRemove.suo
│ │ ├── 01_diy
│ │ │ └── IDCardRemove
│ │ │ ├── IDCardRemove
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IDCardRemove.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IDCardRemove.sln
│ │ │ └── IDCardRemove.suo
│ │ ├── 02
│ │ │ └── ALitterArms
│ │ │ ├── ALitterArms
│ │ │ │ ├── ALitterArms.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ALitterArms.sln
│ │ │ └── ALitterArms.suo
│ │ ├── 02_diy
│ │ │ └── HundredChicken
│ │ │ ├── HundredChicken
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── HundredChicken.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── HundredChicken.sln
│ │ │ └── HundredChicken.suo
│ │ ├── 03
│ │ │ └── DaffodilAccount
│ │ │ ├── DaffodilAccount
│ │ │ │ ├── DaffodilAccount.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DaffodilAccount.sln
│ │ │ └── DaffodilAccount.suo
│ │ ├── 03_diy
│ │ │ └── AgreeArithmetic
│ │ │ ├── AgreeArithmetic
│ │ │ │ ├── AgreeArithmetic.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AgreeArithmetic.sln
│ │ │ └── AgreeArithmetic.suo
│ │ ├── 04
│ │ │ └── ConstellationSearch
│ │ │ ├── ConstellationSearch
│ │ │ │ ├── ConstellationSearch.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 双子座.jpg
│ │ │ │ │ ├── 双鱼座.jpg
│ │ │ │ │ ├── 图标 (11).ico
│ │ │ │ │ ├── 图标 (168).ico
│ │ │ │ │ ├── 处女座.jpg
│ │ │ │ │ ├── 天秤座.jpg
│ │ │ │ │ ├── 天蝎座.jpg
│ │ │ │ │ ├── 射手座.jpg
│ │ │ │ │ ├── 巨蟹座.jpg
│ │ │ │ │ ├── 摩羯座.jpg
│ │ │ │ │ ├── 星座查询.jpg
│ │ │ │ │ ├── 查询按钮.png
│ │ │ │ │ ├── 水瓶座.jpg
│ │ │ │ │ ├── 狮子座.jpg
│ │ │ │ │ ├── 白羊座.jpg
│ │ │ │ │ └── 金牛座.jpg
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── bg.jpg
│ │ │ │ ├── exit.jpg
│ │ │ │ └── search.jpg
│ │ │ ├── ConstellationSearch.sln
│ │ │ └── ConstellationSearch.suo
│ │ ├── 04_diy
│ │ │ └── ShengXiaoExample
│ │ │ ├── ShengXiaoExample
│ │ │ │ ├── Class1.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShengXiaoExample.csproj
│ │ │ ├── ShengXiaoExample.sln
│ │ │ └── ShengXiaoExample.suo
│ │ ├── 05
│ │ │ └── DbColorBall
│ │ │ ├── DbColorBall
│ │ │ │ ├── DbColorBall.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 图标.ico
│ │ │ │ │ ├── 按钮.gif
│ │ │ │ │ └── 界面.jpg
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DbColorBall.sln
│ │ │ └── DbColorBall.suo
│ │ └── 05_diy
│ │ └── GetAwardByMobile
│ │ ├── GetAwardByMobile
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetAwardByMobile.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetAwardByMobile.sln
│ │ └── GetAwardByMobile.suo
│ ├── sl
│ │ ├── 6.01
│ │ │ └── FindMaxAndMin
│ │ │ ├── FindMaxAndMin
│ │ │ │ ├── FindMaxAndMin.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── FindMaxAndMin.sln
│ │ │ └── FindMaxAndMin.suo
│ │ ├── 6.02
│ │ │ └── YHSJ
│ │ │ ├── YHSJ
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── YHSJ.csproj
│ │ │ ├── YHSJ.sln
│ │ │ └── YHSJ.suo
│ │ ├── 6.03
│ │ │ └── BubbleUpSort
│ │ │ ├── BubbleUpSort
│ │ │ │ ├── BubbleUpSort.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── BubbleUpSort.sln
│ │ │ └── BubbleUpSort.suo
│ │ ├── 6.04
│ │ │ └── InsertSort
│ │ │ ├── InsertSort
│ │ │ │ ├── InsertSort.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── InsertSort.sln
│ │ │ └── InsertSort.suo
│ │ ├── 6.05
│ │ │ └── SelectSort
│ │ │ ├── SelectSort
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SelectSort.csproj
│ │ │ ├── SelectSort.sln
│ │ │ └── SelectSort.suo
│ │ └── 6.06
│ │ └── HillSort
│ │ ├── HillSort
│ │ │ ├── HillSort.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── HillSort.sln
│ │ └── HillSort.suo
│ └── zmhh
│ ├── 01
│ │ └── IncrementSquare
│ │ ├── IncrementSquare
│ │ │ ├── IncrementSquare.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── IncrementSquare.sln
│ │ └── IncrementSquare.suo
│ ├── 01_zmhh
│ │ └── IncrementSquare
│ │ ├── IncrementSquare
│ │ │ ├── IncrementSquare.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── IncrementSquare.sln
│ │ └── IncrementSquare.suo
│ ├── 02
│ │ └── TenFactiorial
│ │ ├── TenFactiorial
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── TenFactiorial.csproj
│ │ ├── TenFactiorial.sln
│ │ └── TenFactiorial.suo
│ ├── 02_zmhh
│ │ └── TenFactiorial
│ │ ├── TenFactiorial
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── TenFactiorial.csproj
│ │ ├── TenFactiorial.sln
│ │ └── TenFactiorial.suo
│ ├── 03
│ │ └── GetMaxCommonDivisor
│ │ ├── GetMaxCommonDivisor
│ │ │ ├── GetMaxCommonDivisor.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetMaxCommonDivisor.sln
│ │ └── GetMaxCommonDivisor.suo
│ ├── 03_zmhh
│ │ └── GetMinCommonMultiple
│ │ ├── GetMinCommonMultiple
│ │ │ ├── GetMinCommonMultiple.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetMinCommonMultiple.sln
│ │ └── GetMinCommonMultiple.suo
│ ├── 04
│ │ └── ByteConversion
│ │ ├── ByteConversion
│ │ │ ├── ByteConversion.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ByteConversion.sln
│ │ └── ByteConversion.suo
│ ├── 04_zmhh
│ │ └── ByteConversion
│ │ ├── ByteConversion
│ │ │ ├── ByteConversion.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ByteConversion.sln
│ │ └── ByteConversion.suo
│ ├── 05
│ │ └── ArbitrarinessCombination
│ │ ├── ArbitrarinessCombination
│ │ │ ├── ArbitrarinessCombination.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ArbitrarinessCombination.sln
│ │ └── ArbitrarinessCombination.suo
│ └── 05_zmhh
│ └── ArbitrarinessCombination
│ ├── ArbitrarinessCombination
│ │ ├── ArbitrarinessCombination.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ArbitrarinessCombination.sln
│ └── ArbitrarinessCombination.suo
├── 07
│ ├── qjyy
│ │ ├── 01
│ │ │ └── PeopleSpeakByMState
│ │ │ ├── PeopleSpeakByMState
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PeopleSpeakByMState.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PeopleSpeakByMState.sln
│ │ │ └── PeopleSpeakByMState.suo
│ │ ├── 01_diy
│ │ │ └── Vehicles
│ │ │ ├── Vehicles
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Vehicles.csproj
│ │ │ ├── Vehicles.sln
│ │ │ └── Vehicles.suo
│ │ ├── 02
│ │ │ └── CalcByClass
│ │ │ ├── CalcByClass
│ │ │ │ ├── CalcByClass.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CalcByClass.sln
│ │ │ └── CalcByClass.suo
│ │ ├── 02_diy
│ │ │ └── AboutLeechdom
│ │ │ ├── AboutLeechdom
│ │ │ │ ├── AboutLeechdom.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── AboutLeechdom.sln
│ │ │ └── AboutLeechdom.suo
│ │ ├── 03
│ │ │ └── StoreStuInfo
│ │ │ ├── StoreStuInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StoreStuInfo.csproj
│ │ │ ├── StoreStuInfo.sln
│ │ │ └── StoreStuInfo.suo
│ │ ├── 03_diy
│ │ │ └── PartialClass
│ │ │ ├── PartialClass
│ │ │ │ ├── PartialClass.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── PartialClass.sln
│ │ │ └── PartialClass.suo
│ │ ├── 04
│ │ │ └── ExtensiveList
│ │ │ ├── ExtensiveList
│ │ │ │ ├── ExtensiveList.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ExtensiveList.sln
│ │ │ └── ExtensiveList.suo
│ │ ├── 04_diy
│ │ │ └── ListStudent
│ │ │ ├── ListStudent
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── ListStudent.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ListStudent.sln
│ │ │ └── ListStudent.suo
│ │ ├── 05
│ │ │ └── RemoveSameNum
│ │ │ ├── RemoveSameNum
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RemoveSameNum.csproj
│ │ │ ├── RemoveSameNum.sln
│ │ │ └── RemoveSameNum.suo
│ │ └── 05_diy
│ │ └── RemoveSameNum
│ │ ├── RemoveSameNum
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RemoveSameNum.csproj
│ │ ├── RemoveSameNum.sln
│ │ └── RemoveSameNum.suo
│ ├── sl
│ │ ├── 7.01
│ │ │ └── 7.01.txt
│ │ ├── 7.02
│ │ │ └── 7.02.txt
│ │ ├── 7.03
│ │ │ └── 7.03.txt
│ │ ├── 7.04
│ │ │ └── UseAttribute
│ │ │ ├── UseAttribute
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseAttribute.csproj
│ │ │ ├── UseAttribute.sln
│ │ │ └── UseAttribute.suo
│ │ ├── 7.05
│ │ │ └── 7.05.txt
│ │ ├── 7.06
│ │ │ └── StaticMethod
│ │ │ ├── StaticMethod
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── StaticMethod.csproj
│ │ │ ├── StaticMethod.sln
│ │ │ └── StaticMethod.suo
│ │ ├── 7.07
│ │ │ └── NStaticMethod
│ │ │ ├── NStaticMethod
│ │ │ │ ├── NStaticMethod.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── NStaticMethod.sln
│ │ │ └── NStaticMethod.suo
│ │ ├── 7.08
│ │ │ └── OverMethod
│ │ │ ├── OverMethod
│ │ │ │ ├── OverMethod.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── OverMethod.sln
│ │ │ └── OverMethod.suo
│ │ ├── 7.09
│ │ │ └── 7.09.txt
│ │ ├── 7.10
│ │ │ └── UseEnum
│ │ │ ├── UseEnum
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseEnum.csproj
│ │ │ ├── UseEnum.sln
│ │ │ └── UseEnum.suo
│ │ ├── 7.11
│ │ │ └── 7.11.txt
│ │ ├── 7.12
│ │ │ └── 7.12.txt
│ │ ├── 7.13
│ │ │ └── FXInterface
│ │ │ ├── FXInterface
│ │ │ │ ├── FXInterface.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── FXInterface.sln
│ │ │ └── FXInterface.suo
│ │ ├── 7.14
│ │ │ └── 7.14.txt
│ │ ├── 7.15
│ │ │ └── UseStruct
│ │ │ ├── UseStruct
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseStruct.csproj
│ │ │ ├── UseStruct.sln
│ │ │ └── UseStruct.suo
│ │ ├── 7.16
│ │ │ └── 7.16.txt
│ │ ├── 7.17
│ │ │ └── UseGZHS
│ │ │ ├── UseGZHS
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseGZHS.csproj
│ │ │ ├── UseGZHS.sln
│ │ │ └── UseGZHS.suo
│ │ ├── 7.18
│ │ │ └── UseXGHS
│ │ │ ├── UseXGHS
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseXGHS.csproj
│ │ │ ├── UseXGHS.sln
│ │ │ └── UseXGHS.suo
│ │ ├── 7.19
│ │ │ └── UseDuiXiang
│ │ │ ├── UseDuiXiang
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseDuiXiang.csproj
│ │ │ ├── UseDuiXiang.sln
│ │ │ └── UseDuiXiang.suo
│ │ ├── 7.20
│ │ │ └── UseFengZhuang
│ │ │ ├── UseFengZhuang
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseFengZhuang.csproj
│ │ │ ├── UseFengZhuang.sln
│ │ │ └── UseFengZhuang.suo
│ │ ├── 7.21
│ │ │ └── UseSingleJC
│ │ │ ├── UseSingleJC
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseSingleJC.csproj
│ │ │ ├── UseSingleJC.sln
│ │ │ └── UseSingleJC.suo
│ │ ├── 7.22
│ │ │ └── UseMulJC
│ │ │ ├── UseMulJC
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseMulJC.csproj
│ │ │ ├── UseMulJC.sln
│ │ │ └── UseMulJC.suo
│ │ └── 7.23
│ │ └── UseDuoTai
│ │ ├── UseDuoTai
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseDuoTai.csproj
│ │ ├── UseDuoTai.sln
│ │ └── UseDuoTai.suo
│ └── zmhh
│ ├── 01
│ │ └── StoreIDAndName
│ │ ├── StoreIDAndName
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── StoreIDAndName.csproj
│ │ ├── StoreIDAndName.sln
│ │ └── StoreIDAndName.suo
│ ├── 01_zmhh
│ │ └── StoreIDAndName
│ │ ├── StoreIDAndName
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── StoreIDAndName.csproj
│ │ ├── StoreIDAndName.sln
│ │ └── StoreIDAndName.suo
│ ├── 02
│ │ └── SquareByMethod
│ │ ├── SquareByMethod
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SquareByMethod.csproj
│ │ ├── SquareByMethod.sln
│ │ └── SquareByMethod.suo
│ ├── 02_zmhh
│ │ └── CubeByMethod
│ │ ├── CubeByMethod
│ │ │ ├── CubeByMethod.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CubeByMethod.sln
│ │ └── CubeByMethod.suo
│ ├── 03
│ │ └── TypesCalc
│ │ ├── TypesCalc
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── TypesCalc.csproj
│ │ ├── TypesCalc.sln
│ │ └── TypesCalc.suo
│ ├── 03_zmhh
│ │ └── ComputeGirth
│ │ ├── ComputeGirth
│ │ │ ├── ComputeGirth.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ComputeGirth.sln
│ │ └── ComputeGirth.suo
│ ├── 04
│ │ └── GetRAreaByStruct
│ │ ├── GetRAreaByStruct
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetRAreaByStruct.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetRAreaByStruct.sln
│ │ └── GetRAreaByStruct.suo
│ ├── 04_zmhh
│ │ └── GetRAreaByStruct
│ │ ├── GetRAreaByStruct
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetRAreaByStruct.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetRAreaByStruct.sln
│ │ └── GetRAreaByStruct.suo
│ ├── 05
│ │ └── GetTAreaByClass
│ │ ├── GetTAreaByClass
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetTAreaByClass.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetTAreaByClass.sln
│ │ └── GetTAreaByClass.suo
│ └── 05_zmhh
│ └── GetTAreaByClass
│ ├── GetTAreaByClass
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetTAreaByClass.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── GetTAreaByClass.sln
│ └── GetTAreaByClass.suo
├── 08
│ ├── qjyy
│ │ ├── 01
│ │ │ └── StartFormByLClosePosition
│ │ │ ├── StartFormByLClosePosition
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── StartFormByLClosePosition.csproj
│ │ │ ├── StartFormByLClosePosition.sln
│ │ │ └── StartFormByLClosePosition.suo
│ │ ├── 01_diy
│ │ │ └── RegSoftByRegedit
│ │ │ ├── RegSoftByRegedit
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RegSoftByRegedit.csproj
│ │ │ ├── RegSoftByRegedit.sln
│ │ │ └── RegSoftByRegedit.suo
│ │ ├── 02
│ │ │ └── ControlFormStatus
│ │ │ ├── ControlFormStatus
│ │ │ │ ├── ControlFormStatus.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 关闭变色.jpg
│ │ │ │ ├── 关闭按钮.jpg
│ │ │ │ ├── 最大化变色.jpg
│ │ │ │ ├── 最大化按钮.jpg
│ │ │ │ ├── 最小化变色.jpg
│ │ │ │ ├── 最小化按钮.jpg
│ │ │ │ ├── 登录界面下面.PNG
│ │ │ │ └── 登录界面标题.PNG
│ │ │ ├── ControlFormStatus.sln
│ │ │ └── ControlFormStatus.suo
│ │ ├── 02_diy
│ │ │ └── ControlFormStatus
│ │ │ ├── ControlFormStatus
│ │ │ │ ├── ControlFormStatus.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 关闭变色.jpg
│ │ │ │ ├── 关闭按钮.jpg
│ │ │ │ ├── 最大化变色.jpg
│ │ │ │ ├── 最大化按钮.jpg
│ │ │ │ ├── 最小化变色.jpg
│ │ │ │ ├── 最小化按钮.jpg
│ │ │ │ ├── 登录界面下面.PNG
│ │ │ │ └── 登录界面标题.PNG
│ │ │ ├── ControlFormStatus.sln
│ │ │ └── ControlFormStatus.suo
│ │ ├── 03
│ │ │ └── MagnetismForm
│ │ │ ├── FrmClass.cs
│ │ │ ├── Frm_Libretto.cs
│ │ │ ├── Frm_Libretto.designer.cs
│ │ │ ├── Frm_Libretto.resx
│ │ │ ├── Frm_ListBox.cs
│ │ │ ├── Frm_ListBox.designer.cs
│ │ │ ├── Frm_ListBox.resx
│ │ │ ├── Frm_Play.cs
│ │ │ ├── Frm_Play.designer.cs
│ │ │ ├── Frm_Play.resx
│ │ │ ├── MagnetismForm.csproj
│ │ │ ├── MagnetismForm.sln
│ │ │ ├── MagnetismForm.suo
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── 01.jpg
│ │ │ ├── 02.jpg
│ │ │ ├── 03.jpg
│ │ │ ├── 1.bmp
│ │ │ ├── 2.bmp
│ │ │ ├── 3.bmp
│ │ │ ├── 4.bmp
│ │ │ ├── 5.bmp
│ │ │ └── Close.bmp
│ │ ├── 03_diy
│ │ │ └── magnetism
│ │ │ ├── magnetism
│ │ │ │ ├── FrmClass.cs
│ │ │ │ ├── Frm_Libretto.cs
│ │ │ │ ├── Frm_Libretto.Designer.cs
│ │ │ │ ├── Frm_Libretto.resx
│ │ │ │ ├── Frm_ListBox.cs
│ │ │ │ ├── Frm_ListBox.designer.cs
│ │ │ │ ├── Frm_ListBox.resx
│ │ │ │ ├── Frm_Play.cs
│ │ │ │ ├── Frm_Play.Designer.cs
│ │ │ │ ├── Frm_Play.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 1.bmp
│ │ │ │ │ ├── 2.bmp
│ │ │ │ │ ├── 3.bmp
│ │ │ │ │ ├── 4.bmp
│ │ │ │ │ ├── 5.bmp
│ │ │ │ │ └── Close.bmp
│ │ │ │ ├── magnetism.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── magnetism.sln
│ │ │ └── magnetism.suo
│ │ ├── 04
│ │ │ └── MouseThroughForm
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MouseThroughForm.csproj
│ │ │ ├── MouseThroughForm.sln
│ │ │ ├── MouseThroughForm.suo
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── 04_diy
│ │ │ └── CalendarPenetrate
│ │ │ ├── CalendarPenetrate
│ │ │ │ ├── CalendarPenetrate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ └── 明日图标(2).ico
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CalendarPenetrate.sln
│ │ │ └── CalendarPenetrate.suo
│ │ ├── 05
│ │ │ └── WinCusSkin
│ │ │ ├── WinCusSkin
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── images
│ │ │ │ │ ├── blue
│ │ │ │ │ │ ├── background.gif
│ │ │ │ │ │ ├── bottom.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── left.png
│ │ │ │ │ │ ├── max_Normal.png
│ │ │ │ │ │ ├── max.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── min.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ └── top.png
│ │ │ │ │ ├── green
│ │ │ │ │ │ ├── background.gif
│ │ │ │ │ │ ├── bottom.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── left.png
│ │ │ │ │ │ ├── max_normal.png
│ │ │ │ │ │ ├── max.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── min.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ └── top.png
│ │ │ │ │ ├── purple
│ │ │ │ │ │ ├── background.gif
│ │ │ │ │ │ ├── bottom.png
│ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ ├── left.PNG
│ │ │ │ │ │ ├── max_normal.png
│ │ │ │ │ │ ├── max.png
│ │ │ │ │ │ ├── menu.gif
│ │ │ │ │ │ ├── min.png
│ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ └── top.png
│ │ │ │ │ └── skin1
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── WinCusSkin.csproj
│ │ │ ├── WinCusSkin.sln
│ │ │ └── WinCusSkin.suo
│ │ └── 05_diy
│ │ └── WinCusSkin_Extend
│ │ ├── WinCusSkin
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── images
│ │ │ │ ├── blue
│ │ │ │ │ ├── background.gif
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── close2.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── left.png
│ │ │ │ │ ├── max2.png
│ │ │ │ │ ├── max_Normal2.png
│ │ │ │ │ ├── max_Normal.png
│ │ │ │ │ ├── max.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── min2.png
│ │ │ │ │ ├── min.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── top.png
│ │ │ │ ├── green
│ │ │ │ │ ├── background.gif
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── close2.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── left.png
│ │ │ │ │ ├── max2.png
│ │ │ │ │ ├── max_normal2.png
│ │ │ │ │ ├── max_normal.png
│ │ │ │ │ ├── max.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── min2.png
│ │ │ │ │ ├── min.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── top.png
│ │ │ │ ├── purple
│ │ │ │ │ ├── background.gif
│ │ │ │ │ ├── bottom.png
│ │ │ │ │ ├── close2.png
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── left.PNG
│ │ │ │ │ ├── max2.png
│ │ │ │ │ ├── max_normal2.png
│ │ │ │ │ ├── max_normal.png
│ │ │ │ │ ├── max.png
│ │ │ │ │ ├── menu.gif
│ │ │ │ │ ├── min2.png
│ │ │ │ │ ├── min.png
│ │ │ │ │ ├── right.png
│ │ │ │ │ └── top.png
│ │ │ │ └── skin1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WinCusSkin.csproj
│ │ ├── WinCusSkin.sln
│ │ └── WinCusSkin.suo
│ ├── sl
│ │ ├── 8.01
│ │ │ └── 8.01.txt
│ │ ├── 8.02
│ │ │ └── 8.02.txt
│ │ ├── 8.03
│ │ │ └── 8.03.txt
│ │ ├── 8.04
│ │ │ └── ClickDemo
│ │ │ ├── ClickDemo
│ │ │ │ ├── ClickDemo.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ClickDemo.sln
│ │ │ └── ClickDemo.suo
│ │ ├── 8.05
│ │ │ └── LoadDemo
│ │ │ ├── LoadDemo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LoadDemo.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LoadDemo.sln
│ │ │ └── LoadDemo.suo
│ │ ├── 8.06
│ │ │ └── CloseForm
│ │ │ ├── CloseForm
│ │ │ │ ├── CloseForm.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CloseForm.sln
│ │ │ └── CloseForm.suo
│ │ ├── 8.07
│ │ │ └── 8.07.txt
│ │ ├── 8.08
│ │ │ └── MDIForm
│ │ │ ├── MDIForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form3.cs
│ │ │ │ ├── Form3.Designer.cs
│ │ │ │ ├── Form4.cs
│ │ │ │ ├── Form4.Designer.cs
│ │ │ │ ├── MDIForm.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MDIForm.sln
│ │ │ └── MDIForm.suo
│ │ ├── 8.09
│ │ │ └── JCForm
│ │ │ ├── JCForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form2.resx
│ │ │ │ ├── JCForm.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── JCForm.sln
│ │ │ └── JCForm.suo
│ │ └── 8.10
│ │ └── EditJCForm
│ │ ├── EditJCForm
│ │ │ ├── EditJCForm.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Form2.cs
│ │ │ ├── Form2.Designer.cs
│ │ │ ├── Form2.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── EditJCForm.sln
│ │ └── EditJCForm.suo
│ └── zmhh
│ ├── 01
│ │ └── LoadPosition
│ │ ├── LoadPosition
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── LoadPosition.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LoadPosition.sln
│ │ └── LoadPosition.suo
│ ├── 01_zmhh
│ │ └── LoadPosition
│ │ ├── LoadPosition
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── LoadPosition.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LoadPosition.sln
│ │ └── LoadPosition.suo
│ ├── 02
│ │ └── SetLocation
│ │ ├── SetLocation
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetLocation.csproj
│ │ ├── SetLocation.sln
│ │ └── SetLocation.suo
│ ├── 02_zmhh
│ │ └── SetLocation
│ │ ├── SetLocation
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetLocation.csproj
│ │ ├── SetLocation.sln
│ │ └── SetLocation.suo
│ ├── 03
│ │ └── AlwaysActiveWindows
│ │ ├── AlwaysActiveWindows
│ │ │ ├── AlwaysActiveWindows.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AlwaysActiveWindows.sln
│ │ └── AlwaysActiveWindows.suo
│ ├── 03_zmhh
│ │ └── AlwaysActiveWindows
│ │ ├── AlwaysActiveWindows
│ │ │ ├── AlwaysActiveWindows.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AlwaysActiveWindows.sln
│ │ └── AlwaysActiveWindows.suo
│ ├── 04
│ │ └── SetFormSizeByDeskSize
│ │ ├── SetFormSizeByDeskSize
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetFormSizeByDeskSize.csproj
│ │ ├── SetFormSizeByDeskSize.sln
│ │ └── SetFormSizeByDeskSize.suo
│ ├── 04_zmhh
│ │ └── ChangeFormSize
│ │ ├── ChangeFormSize
│ │ │ ├── ChangeFormSize.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ChangeFormSize.sln
│ │ └── ChangeFormSize.suo
│ ├── 05
│ │ └── AutoImageSizeByForm
│ │ ├── AutoImageSizeByForm
│ │ │ ├── AutoImageSizeByForm.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AutoImageSizeByForm.sln
│ │ └── AutoImageSizeByForm.suo
│ └── 05_zmhh
│ └── AutoImageSizeByForm
│ ├── AutoImageSizeByForm
│ │ ├── AutoImageSizeByForm.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── AutoImageSizeByForm.sln
│ └── AutoImageSizeByForm.suo
├── 09
│ ├── qjyy
│ │ ├── 01
│ │ │ └── OnlyDigit
│ │ │ ├── OnlyDigit
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── OnlyDigit.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── OnlyDigit.sln
│ │ │ └── OnlyDigit.suo
│ │ ├── 01_diy
│ │ │ └── OnlyLetter
│ │ │ ├── OnlyLetter
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── OnlyLetter.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── OnlyLetter.sln
│ │ │ └── OnlyLetter.suo
│ │ ├── 02
│ │ │ └── Selected
│ │ │ ├── Selected
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Selected.csproj
│ │ │ ├── Selected.sln
│ │ │ └── Selected.suo
│ │ ├── 02_diy
│ │ │ └── ModuleImpower
│ │ │ ├── ModuleImpower
│ │ │ │ ├── DataLogic.cs
│ │ │ │ ├── FormOperator.cs
│ │ │ │ ├── FormOperator.Designer.cs
│ │ │ │ ├── FormOperatorInput.cs
│ │ │ │ ├── FormOperatorInput.designer.cs
│ │ │ │ ├── FormOperatorInput.resx
│ │ │ │ ├── FormOperator.resx
│ │ │ │ ├── FormPurviewAssign.cs
│ │ │ │ ├── FormPurviewAssign.Designer.cs
│ │ │ │ ├── FormPurviewAssign.resx
│ │ │ │ ├── GlobalProperty.cs
│ │ │ │ ├── ModuleImpower.csproj
│ │ │ │ ├── Operator.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Useful.cs
│ │ │ ├── ModuleImpower.sln
│ │ │ └── ModuleImpower.suo
│ │ ├── 03
│ │ │ └── DisplayNumber
│ │ │ ├── DisplayNumber
│ │ │ │ ├── DisplayNumber.csproj
│ │ │ │ ├── DisplayNumber.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Resources
│ │ │ │ │ ├── 数字编号.bmp
│ │ │ │ │ └── 项目编号.bmp
│ │ │ │ └── RichTextBoxEx.cs
│ │ │ ├── DisplayNumber.sln
│ │ │ └── DisplayNumber.suo
│ │ ├── 03_diy
│ │ │ └── PlantTextAlignMode
│ │ │ ├── PlantTextAlignMode
│ │ │ │ ├── PlantTextAlignMode.cs
│ │ │ │ ├── PlantTextAlignMode.csproj
│ │ │ │ ├── PlantTextAlignMode.Designer.cs
│ │ │ │ ├── PlantTextAlignMode.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 右对齐.bmp
│ │ │ │ ├── 居中对齐.bmp
│ │ │ │ └── 左对齐.bmp
│ │ │ ├── PlantTextAlignMode.sln
│ │ │ └── PlantTextAlignMode.suo
│ │ ├── 04
│ │ │ └── HistoryMenu
│ │ │ ├── HistoryMenu
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── HistoryMenu.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── HistoryMenu.sln
│ │ │ └── HistoryMenu.suo
│ │ ├── 04_diy
│ │ │ └── HideMenu
│ │ │ ├── HideMenu
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MayStretchMenu.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MayStretchMenu.sln
│ │ │ └── MayStretchMenu.suo
│ │ ├── 05
│ │ │ └── LikesXP
│ │ │ ├── LikesXP
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 1.bmp
│ │ │ │ │ ├── 1.jpg
│ │ │ │ │ ├── 2.jpg
│ │ │ │ │ ├── 3.jpg
│ │ │ │ │ ├── 4.jpg
│ │ │ │ │ ├── 5.jpg
│ │ │ │ │ ├── 大背景.jpg
│ │ │ │ │ ├── 朝上按钮.jpg
│ │ │ │ │ └── 朝下按钮.jpg
│ │ │ │ ├── LikesXP.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LikesXP.sln
│ │ │ └── LikesXP.suo
│ │ └── 05_diy
│ │ └── Navigation
│ │ ├── Navigation
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Navigation.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Navigation.sln
│ │ └── Navigation.suo
│ ├── sl
│ │ ├── 9.01
│ │ │ └── 9.01.txt
│ │ ├── 9.02
│ │ │ └── 9.02.txt
│ │ ├── 9.03
│ │ │ └── UseBtnClick
│ │ │ ├── UseBtnClick
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseBtnClick.csproj
│ │ │ ├── UseBtnClick.sln
│ │ │ └── UseBtnClick.suo
│ │ ├── 9.04
│ │ │ └── UseAcceptButton
│ │ │ ├── UseAcceptButton
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseAcceptButton.csproj
│ │ │ ├── UseAcceptButton.sln
│ │ │ └── UseAcceptButton.suo
│ │ ├── 9.05
│ │ │ └── TXTReadOnly
│ │ │ ├── TXTReadOnly
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTReadOnly.csproj
│ │ │ ├── TXTReadOnly.sln
│ │ │ └── TXTReadOnly.suo
│ │ ├── 9.06
│ │ │ └── TXTPwdChar
│ │ │ ├── TXTPwdChar
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTPwdChar.csproj
│ │ │ ├── TXTPwdChar.sln
│ │ │ └── TXTPwdChar.suo
│ │ ├── 9.07
│ │ │ └── TXTMult
│ │ │ ├── TXTMult
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTMult.csproj
│ │ │ ├── TXTMult.sln
│ │ │ └── TXTMult.suo
│ │ ├── 9.08
│ │ │ └── TXTChanage
│ │ │ ├── TXTChanage
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TXTChanage.csproj
│ │ │ ├── TXTChanage.sln
│ │ │ └── TXTChanage.suo
│ │ ├── 9.09
│ │ │ └── RTXTScroll
│ │ │ ├── RTXTScroll
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RTXTScroll.csproj
│ │ │ ├── RTXTScroll.sln
│ │ │ └── RTXTScroll.suo
│ │ ├── 9.10
│ │ │ └── RTXTFont
│ │ │ ├── RTXTFont
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RTXTFont.csproj
│ │ │ ├── RTXTFont.sln
│ │ │ └── RTXTFont.suo
│ │ ├── 9.11
│ │ │ └── RTXTURL
│ │ │ ├── RTXTURL
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RTXTURL.csproj
│ │ │ ├── RTXTURL.sln
│ │ │ └── RTXTURL.suo
│ │ ├── 9.12
│ │ │ └── CBoxSelect
│ │ │ ├── CBoxSelect
│ │ │ │ ├── CBoxSelect.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CBoxSelect.sln
│ │ │ └── CBoxSelect.suo
│ │ ├── 9.13
│ │ │ └── CBoxChanged
│ │ │ ├── CBoxChanged
│ │ │ │ ├── CBoxChanged.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CBoxChanged.sln
│ │ │ └── CBoxChanged.suo
│ │ ├── 9.14
│ │ │ └── CKBoxCheck
│ │ │ ├── CKBoxCheck
│ │ │ │ ├── CKBoxCheck.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CKBoxCheck.sln
│ │ │ └── CKBoxCheck.suo
│ │ ├── 9.15
│ │ │ └── CKBoxChanged
│ │ │ ├── CKBoxChanged
│ │ │ │ ├── CKBoxChanged.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CKBoxChanged.sln
│ │ │ └── CKBoxChanged.suo
│ │ ├── 9.16
│ │ │ └── RBtnCheck
│ │ │ ├── RBtnCheck
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RBtnCheck.csproj
│ │ │ ├── RBtnCheck.sln
│ │ │ └── RBtnCheck.suo
│ │ ├── 9.17
│ │ │ └── RBtnChange
│ │ │ ├── RBtnChange
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RBtnChange.csproj
│ │ │ ├── RBtnChange.sln
│ │ │ └── RBtnChange.suo
│ │ ├── 9.18
│ │ │ └── NUDownNum
│ │ │ ├── NUDownNum
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NUDownNum.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NUDownNum.sln
│ │ │ └── NUDownNum.suo
│ │ ├── 9.19
│ │ │ └── NUDownStyle
│ │ │ ├── NUDownStyle
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NUDownStyle.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NUDownStyle.sln
│ │ │ └── NUDownStyle.suo
│ │ ├── 9.20
│ │ │ └── LBoxAddAndRemove
│ │ │ ├── LBoxAddAndRemove
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LBoxAddAndRemove.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LBoxAddAndRemove.sln
│ │ │ └── LBoxAddAndRemove.suo
│ │ ├── 9.21
│ │ │ └── LBoxSelectMult
│ │ │ ├── LBoxSelectMult
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LBoxSelectMult.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LBoxSelectMult.sln
│ │ │ └── LBoxSelectMult.suo
│ │ ├── 9.22
│ │ │ └── UsePanel
│ │ │ ├── UsePanel
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePanel.csproj
│ │ │ ├── UsePanel.sln
│ │ │ └── UsePanel.suo
│ │ ├── 9.23
│ │ │ └── UseGroupBox
│ │ │ ├── UseGroupBox
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseGroupBox.csproj
│ │ │ ├── UseGroupBox.sln
│ │ │ └── UseGroupBox.suo
│ │ ├── 9.24
│ │ │ └── TCtrlStyle
│ │ │ ├── TCtrlStyle
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TCtrlStyle.csproj
│ │ │ ├── TCtrlStyle.sln
│ │ │ └── TCtrlStyle.suo
│ │ ├── 9.25
│ │ │ └── TCtrlAddPage
│ │ │ ├── TCtrlAddPage
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TCtrlAddPage.csproj
│ │ │ ├── TCtrlAddPage.sln
│ │ │ └── TCtrlAddPage.suo
│ │ ├── 9.26
│ │ │ └── TCtrlRemovePage
│ │ │ ├── TCtrlRemovePage
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TCtrlRemovePage.csproj
│ │ │ ├── TCtrlRemovePage.sln
│ │ │ └── TCtrlRemovePage.suo
│ │ ├── 9.27
│ │ │ └── 9.27.txt
│ │ ├── 9.28
│ │ │ └── UseOpenDialog
│ │ │ ├── UseOpenDialog
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseOpenDialog.csproj
│ │ │ ├── UseOpenDialog.sln
│ │ │ └── UseOpenDialog.suo
│ │ ├── 9.29
│ │ │ └── UseSaveDialog
│ │ │ ├── UseSaveDialog
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseSaveDialog.csproj
│ │ │ ├── UseSaveDialog.sln
│ │ │ └── UseSaveDialog.suo
│ │ ├── 9.30
│ │ │ └── UseBrowserDialog
│ │ │ ├── UseBrowserDialog
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseBrowserDialog.csproj
│ │ │ ├── UseBrowserDialog.sln
│ │ │ └── UseBrowserDialog.suo
│ │ ├── 9.31
│ │ │ └── UseMenu
│ │ │ ├── UseMenu
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseMenu.csproj
│ │ │ ├── UseMenu.sln
│ │ │ └── UseMenu.suo
│ │ ├── 9.32
│ │ │ └── UseTool
│ │ │ ├── UseTool
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTool.csproj
│ │ │ ├── UseTool.sln
│ │ │ └── UseTool.suo
│ │ └── 9.33
│ │ └── UseStatus
│ │ ├── UseStatus
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseStatus.csproj
│ │ ├── UseStatus.sln
│ │ └── UseStatus.suo
│ └── zmhh
│ ├── 01
│ │ └── PicturesInComboBox
│ │ ├── PicturesInComboBox
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── PicturesInComboBox.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── a.bmp
│ │ │ ├── b.bmp
│ │ │ ├── c.bmp
│ │ │ └── d.bmp
│ │ ├── PicturesInComboBox.sln
│ │ └── PicturesInComboBox.suo
│ ├── 01_zmhh
│ │ └── PicturesInComboBox
│ │ ├── PicturesInComboBox
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── PicturesInComboBox.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── a.bmp
│ │ │ ├── b.bmp
│ │ │ ├── c.bmp
│ │ │ └── d.bmp
│ │ ├── PicturesInComboBox.sln
│ │ └── PicturesInComboBox.suo
│ ├── 02
│ │ └── ComboBoxFind
│ │ ├── ComboBoxFind
│ │ │ ├── ComboBoxFind.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ComboBoxFind.sln
│ │ └── ComboBoxFind.suo
│ ├── 02_zmhh
│ │ └── ComboBoxFind
│ │ ├── ComboBoxFind
│ │ │ ├── ComboBoxFind.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ComboBoxFind.sln
│ │ └── ComboBoxFind.suo
│ ├── 03
│ │ └── FindKey
│ │ ├── FindKey
│ │ │ ├── FindKey.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindKey.sln
│ │ └── FindKey.suo
│ ├── 03_zmhh
│ │ └── FindKey
│ │ ├── FindKey
│ │ │ ├── FindKey.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FindKey.sln
│ │ └── FindKey.suo
│ ├── 04
│ │ └── DataSort
│ │ ├── DataSort
│ │ │ ├── DataSort.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataSort.sln
│ │ └── DataSort.suo
│ ├── 04_zmhh
│ │ └── DataSort
│ │ ├── DataSort
│ │ │ ├── DataSort.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataSort.sln
│ │ └── DataSort.suo
│ ├── 05
│ │ └── MessageTool
│ │ ├── MessageTool
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MessageTool.csproj
│ │ │ ├── MessageTool.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── MessageTool.sln
│ │ └── MessageTool.suo
│ └── 05_zmhh
│ └── BackGroundTool
│ ├── BackGroundTool
│ │ ├── BackGroundTool.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Resources
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ └── 9.jpg
│ ├── BackGroundTool.sln
│ └── BackGroundTool.suo
├── 10
│ ├── qjyy
│ │ ├── 01
│ │ │ └── Getdirectory
│ │ │ ├── Getdirectory
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Getdirectory.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Getdirectory.sln
│ │ │ └── Getdirectory.suo
│ │ ├── 01_diy
│ │ │ └── GetRegedit
│ │ │ ├── GetRegedit
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── GetRegedit.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetRegedit.sln
│ │ │ └── GetRegedit.suo
│ │ ├── 02
│ │ │ └── DisplayMenu
│ │ │ ├── DisplayMenu
│ │ │ │ ├── 1.bmp
│ │ │ │ ├── DisplayMenu.csproj
│ │ │ │ ├── Form2.cs
│ │ │ │ ├── Form2.Designer.cs
│ │ │ │ ├── Form2.resx
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DisplayMenu.sln
│ │ │ └── DisplayMenu.suo
│ │ ├── 02_diy
│ │ │ └── DataBaseToTreeView
│ │ │ ├── DataBaseToTreeView
│ │ │ │ ├── DataBaseToTreeView.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DataBaseToTreeView.sln
│ │ │ └── DataBaseToTreeView.suo
│ │ ├── 03
│ │ │ └── PowerCalendar
│ │ │ ├── PowerCalendar
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PowerCalendar.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PowerCalendar.sln
│ │ │ └── PowerCalendar.suo
│ │ ├── 03_diy
│ │ │ └── TimeTask
│ │ │ ├── TimeTask
│ │ │ │ ├── DataTier.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── task.cs
│ │ │ │ └── TimeTask.csproj
│ │ │ ├── TimeTask.sln
│ │ │ └── TimeTask.suo
│ │ ├── 04
│ │ │ └── ClockAlarm
│ │ │ ├── ClockAlarm
│ │ │ │ ├── ClockAlarm.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ClockAlarm.sln
│ │ │ └── ClockAlarm.suo
│ │ ├── 04_diy
│ │ │ └── TimeNow
│ │ │ ├── TimeNow
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TimeNow.csproj
│ │ │ ├── TimeNow.sln
│ │ │ └── TimeNow.suo
│ │ ├── 05
│ │ │ └── ShowDialogPBar
│ │ │ ├── ShowDialogPBar
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Frm_Plan.cs
│ │ │ │ ├── Frm_Plan.designer.cs
│ │ │ │ ├── Frm_Plan.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowDialogPBar.csproj
│ │ │ ├── ShowDialogPBar.sln
│ │ │ └── ShowDialogPBar.suo
│ │ └── 05_diy
│ │ └── TrackBarStraightForwardUtility
│ │ ├── TrackBarStraightForwardUtility
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── TrackBarStraightForwardUtility.csproj
│ │ ├── TrackBarStraightForwardUtility.sln
│ │ └── TrackBarStraightForwardUtility.suo
│ ├── sl
│ │ ├── 10.01
│ │ │ └── AddImages
│ │ │ ├── AddImages
│ │ │ │ ├── AddImages.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AddImages.sln
│ │ │ └── AddImages.suo
│ │ ├── 10.02
│ │ │ └── RemoveImages
│ │ │ ├── RemoveImages
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RemoveImages.csproj
│ │ │ ├── RemoveImages.sln
│ │ │ └── RemoveImages.suo
│ │ ├── 10.03
│ │ │ └── LVAddItems
│ │ │ ├── LVAddItems
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVAddItems.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVAddItems.sln
│ │ │ └── LVAddItems.suo
│ │ ├── 10.04
│ │ │ └── LVRemoveItems
│ │ │ ├── LVRemoveItems
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVRemoveItems.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVRemoveItems.sln
│ │ │ └── LVRemoveItems.suo
│ │ ├── 10.05
│ │ │ └── LVSelectItem
│ │ │ ├── LVSelectItem
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVSelectItem.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVSelectItem.sln
│ │ │ └── LVSelectItem.suo
│ │ ├── 10.06
│ │ │ └── LVSetItemIcon
│ │ │ ├── LVSetItemIcon
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVSetItemIcon.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVSetItemIcon.sln
│ │ │ └── LVSetItemIcon.suo
│ │ ├── 10.07
│ │ │ └── LVSetPPView
│ │ │ ├── LVSetPPView
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LVSetPPView.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LVSetPPView.sln
│ │ │ └── LVSetPPView.suo
│ │ ├── 10.08
│ │ │ └── TVAddNodes
│ │ │ ├── TVAddNodes
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVAddNodes.csproj
│ │ │ ├── TVAddNodes.sln
│ │ │ └── TVAddNodes.suo
│ │ ├── 10.09
│ │ │ └── TVRemoveNodes
│ │ │ ├── TVRemoveNodes
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVRemoveNodes.csproj
│ │ │ ├── TVRemoveNodes.sln
│ │ │ └── TVRemoveNodes.suo
│ │ ├── 10.10
│ │ │ └── TVSelectNode
│ │ │ ├── TVSelectNode
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVSelectNode.csproj
│ │ │ ├── TVSelectNode.sln
│ │ │ └── TVSelectNode.suo
│ │ ├── 10.11
│ │ │ └── 10.11.txt
│ │ ├── 10.12
│ │ │ └── 10.12.txt
│ │ ├── 10.13
│ │ │ └── TVSetNodeIcon
│ │ │ ├── TVSetNodeIcon
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── TVSetNodeIcon.csproj
│ │ │ ├── TVSetNodeIcon.sln
│ │ │ └── TVSetNodeIcon.suo
│ │ ├── 10.14
│ │ │ └── DTPickShowTime
│ │ │ ├── DTPickShowTime
│ │ │ │ ├── DTPickShowTime.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DTPickShowTime.sln
│ │ │ └── DTPickShowTime.suo
│ │ ├── 10.15
│ │ │ └── DTPickShowDate
│ │ │ ├── DTPickShowDate
│ │ │ │ ├── DTPickShowDate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DTPickShowDate.sln
│ │ │ └── DTPickShowDate.suo
│ │ ├── 10.16
│ │ │ └── DTPickGetDate
│ │ │ ├── DTPickGetDate
│ │ │ │ ├── DTPickGetDate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DTPickGetDate.sln
│ │ │ └── DTPickGetDate.suo
│ │ ├── 10.17
│ │ │ └── MCalendarBoldDate
│ │ │ ├── MCalendarBoldDate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MCalendarBoldDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MCalendarBoldDate.sln
│ │ │ └── MCalendarBoldDate.suo
│ │ ├── 10.18
│ │ │ └── MCalendarSelectDate
│ │ │ ├── MCalendarSelectDate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MCalendarSelectDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MCalendarSelectDate.sln
│ │ │ └── MCalendarSelectDate.suo
│ │ ├── 10.19
│ │ │ └── EProValTXT
│ │ │ ├── EProValTXT
│ │ │ │ ├── EProValTXT.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── EProValTXT.sln
│ │ │ └── EProValTXT.suo
│ │ ├── 10.20
│ │ │ └── HProUseHelp
│ │ │ ├── HProUseHelp
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── HProUseHelp.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── HProUseHelp.sln
│ │ │ └── HProUseHelp.suo
│ │ ├── 10.21
│ │ │ └── UseTimer
│ │ │ ├── UseTimer
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTimer.csproj
│ │ │ ├── UseTimer.sln
│ │ │ └── UseTimer.suo
│ │ └── 10.22
│ │ └── ShowPBar
│ │ ├── ShowPBar
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ShowPBar.csproj
│ │ ├── ShowPBar.sln
│ │ └── ShowPBar.suo
│ └── zmhh
│ ├── 01
│ │ └── DragViewTerm
│ │ ├── DragViewTerm
│ │ │ ├── DragViewTerm.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DragViewTerm.sln
│ │ └── DragViewTerm.suo
│ ├── 01_zmhh
│ │ └── DragViewTerm
│ │ ├── DragViewTerm
│ │ │ ├── DragViewTerm.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DragViewTerm.sln
│ │ └── DragViewTerm.suo
│ ├── 02
│ │ └── CheckBoxInListView
│ │ ├── CheckBoxInListView
│ │ │ ├── CheckBoxInListView.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CheckBoxInListView.sln
│ │ └── CheckBoxInListView.suo
│ ├── 02_zmhh
│ │ └── CheckBoxInListView
│ │ ├── CheckBoxInListView
│ │ │ ├── CheckBoxInListView.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CheckBoxInListView.sln
│ │ └── CheckBoxInListView.suo
│ ├── 03
│ │ └── TxtValidate
│ │ ├── TxtValidate
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TxtValidate.csproj
│ │ │ └── TxtValidate.csproj.user
│ │ ├── TxtValidate.sln
│ │ └── TxtValidate.suo
│ ├── 03_zmhh
│ │ └── TxtValidate
│ │ ├── TxtValidate
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TxtValidate.csproj
│ │ │ └── TxtValidate.csproj.user
│ │ ├── TxtValidate.sln
│ │ └── TxtValidate.suo
│ ├── 04
│ │ └── UseTimer
│ │ ├── UseTimer
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseTimer.csproj
│ │ ├── UseTimer.sln
│ │ └── UseTimer.suo
│ ├── 04_zmhh
│ │ └── MoveForm
│ │ ├── MoveForm
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MoveForm.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ └── 星星图.jpg
│ │ ├── MoveForm.sln
│ │ └── MoveForm.suo
│ ├── 05
│ │ └── InputText
│ │ ├── InputText
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── InputText.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── InputText.sln
│ │ └── InputText.suo
│ └── 05_zmhh
│ └── InputText
│ ├── InputText
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── InputText.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── InputText.sln
│ └── InputText.suo
├── 11
│ ├── qjyy
│ │ ├── 01
│ │ │ └── UseInsertSelect
│ │ │ ├── UseInsertSelect
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseInsertSelect.csproj
│ │ │ ├── UseInsertSelect.sln
│ │ │ └── UseInsertSelect.suo
│ │ ├── 01_diy
│ │ │ └── UseTransCommitData
│ │ │ ├── UseTransCommitData
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTransCommitData.csproj
│ │ │ ├── UseTransCommitData.sln
│ │ │ └── UseTransCommitData.suo
│ │ ├── 02
│ │ │ └── UseUpdate
│ │ │ ├── UseUpdate
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseUpdate.csproj
│ │ │ ├── UseUpdate.sln
│ │ │ └── UseUpdate.suo
│ │ ├── 02_diy
│ │ │ └── EditByCBuilderAndUpdate
│ │ │ ├── EditByCBuilderAndUpdate
│ │ │ │ ├── EditByCBuilderAndUpdate.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── EditByCBuilderAndUpdate.sln
│ │ │ └── EditByCBuilderAndUpdate.suo
│ │ ├── 03
│ │ │ └── UseSelect
│ │ │ ├── UseSelect
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseSelect.csproj
│ │ │ ├── UseSelect.sln
│ │ │ └── UseSelect.suo
│ │ ├── 03_diy
│ │ │ └── UsePagination
│ │ │ ├── UsePagination
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePagination.csproj
│ │ │ ├── UsePagination.sln
│ │ │ └── UsePagination.suo
│ │ ├── 04
│ │ │ └── SaveBinary
│ │ │ ├── SaveBinary
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SaveBinary.csproj
│ │ │ ├── SaveBinary.sln
│ │ │ └── SaveBinary.suo
│ │ ├── 04_diy
│ │ │ └── UseFilePath
│ │ │ ├── UseFilePath
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseFilePath.csproj
│ │ │ ├── UseFilePath.sln
│ │ │ └── UseFilePath.suo
│ │ ├── 05
│ │ │ └── AutoID
│ │ │ ├── AutoID
│ │ │ │ ├── AutoID.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AutoID.sln
│ │ │ └── AutoID.suo
│ │ └── 05_diy
│ │ └── AddByProc
│ │ ├── AddByProc
│ │ │ ├── AddByProc.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddByProc.sln
│ │ └── AddByProc.suo
│ ├── sl
│ │ ├── 11.01
│ │ │ └── ConSQL
│ │ │ ├── ConSQL
│ │ │ │ ├── ConSQL.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ConSQL.sln
│ │ │ └── ConSQL.suo
│ │ ├── 11.02
│ │ │ └── CloseSQL
│ │ │ ├── CloseSQL
│ │ │ │ ├── CloseSQL.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CloseSQL.sln
│ │ │ └── CloseSQL.suo
│ │ ├── 11.03
│ │ │ └── SqlCmdSelect
│ │ │ ├── SqlCmdSelect
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlCmdSelect.csproj
│ │ │ ├── SqlCmdSelect.sln
│ │ │ └── SqlCmdSelect.suo
│ │ ├── 11.04
│ │ │ └── SqlCmdENQuery
│ │ │ ├── SqlCmdENQuery
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlCmdENQuery.csproj
│ │ │ ├── SqlCmdENQuery.sln
│ │ │ └── SqlCmdENQuery.suo
│ │ ├── 11.05
│ │ │ └── SqlCmdEReader
│ │ │ ├── SqlCmdEReader
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlCmdEReader.csproj
│ │ │ ├── SqlCmdEReader.sln
│ │ │ └── SqlCmdEReader.suo
│ │ ├── 11.06
│ │ │ └── 11.06.txt
│ │ ├── 11.07
│ │ │ └── SqlReaderHasRows
│ │ │ ├── SqlReaderHasRows
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SqlReaderHasRows.csproj
│ │ │ ├── SqlReaderHasRows.sln
│ │ │ └── SqlReaderHasRows.suo
│ │ ├── 11.08
│ │ │ └── 11.08.txt
│ │ ├── 11.09
│ │ │ └── FillDataSet
│ │ │ ├── FillDataSet
│ │ │ │ ├── FillDataSet.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FillDataSet.sln
│ │ │ └── FillDataSet.suo
│ │ ├── 11.10
│ │ │ └── UpdateDataSet
│ │ │ ├── UpdateDataSet
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UpdateDataSet.csproj
│ │ │ ├── UpdateDataSet.sln
│ │ │ └── UpdateDataSet.suo
│ │ ├── 11.11
│ │ │ └── 11.11.txt
│ │ ├── 11.12
│ │ │ └── MergeDataSet
│ │ │ ├── MergeDataSet
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MergeDataSet.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MergeDataSet.sln
│ │ │ └── MergeDataSet.suo
│ │ └── 11.13
│ │ └── CopyDataSet
│ │ ├── CopyDataSet
│ │ │ ├── CopyDataSet.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CopyDataSet.sln
│ │ └── CopyDataSet.suo
│ └── zmhh
│ ├── 01
│ │ └── UsePassword
│ │ ├── UsePassword
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UsePassword.csproj
│ │ ├── UsePassword.sln
│ │ └── UsePassword.suo
│ ├── 01_zmhh
│ │ └── ShareAccess
│ │ ├── ShareAccess
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ShareAccess.csproj
│ │ ├── ShareAccess.sln
│ │ └── ShareAccess.suo
│ ├── 02
│ │ └── ReadTEXT
│ │ ├── ReadTEXT
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReadTEXT.csproj
│ │ ├── ReadTEXT.sln
│ │ └── ReadTEXT.suo
│ ├── 02_zmhh
│ │ └── ConnectToExcel
│ │ ├── ConnectToExcel
│ │ │ ├── ConnectToExcel.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ConnectToExcel.sln
│ │ └── ConnectToExcel.suo
│ ├── 03
│ │ └── GetConfiguration
│ │ ├── GetConfiguration
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetConfiguration.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetConfiguration.sln
│ │ └── GetConfiguration.suo
│ ├── 03_zmhh
│ │ └── GetViewStruct
│ │ ├── GetViewStruct
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetViewStruct.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetViewStruct.sln
│ │ └── GetViewStruct.suo
│ ├── 04
│ │ └── BackUpDataBase
│ │ ├── BackUpDataBase
│ │ │ ├── BackUpDataBase.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BackUpDataBase.sln
│ │ └── BackUpDataBase.suo
│ ├── 04_zmhh
│ │ └── DRSQL2005
│ │ ├── DRSQL2005
│ │ │ ├── DRSQL2005.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DRSQL2005.sln
│ │ └── DRSQL2005.suo
│ ├── 05
│ │ └── ExistSQLServer
│ │ ├── ExistSQLServer
│ │ │ ├── ExistSQLServer.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ExistSQLServer.sln
│ │ └── ExistSQLServer.suo
│ └── 05_zmhh
│ └── ExistSQLServer
│ ├── ExistSQLServer
│ │ ├── ExistSQLServer.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ExistSQLServer.sln
│ └── ExistSQLServer.suo
├── 12
│ ├── qjyy
│ │ ├── 01
│ │ │ └── CellValidate
│ │ │ ├── CellValidate
│ │ │ │ ├── CellValidate.csproj
│ │ │ │ ├── CellValidate.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CellValidate.sln
│ │ │ └── CellValidate.suo
│ │ ├── 01_diy
│ │ │ └── CellValidate
│ │ │ ├── CellValidate
│ │ │ │ ├── CellValidate.csproj
│ │ │ │ ├── CellValidate.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CellValidate.sln
│ │ │ └── CellValidate.suo
│ │ ├── 02
│ │ │ └── SumAndAverage
│ │ │ ├── SumAndAverage
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SumAndAverage.csproj
│ │ │ ├── SumAndAverage.sln
│ │ │ └── SumAndAverage.suo
│ │ ├── 02_diy
│ │ │ └── SumAndAverage
│ │ │ ├── SumAndAverage
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SumAndAverage.csproj
│ │ │ ├── SumAndAverage.sln
│ │ │ └── SumAndAverage.suo
│ │ ├── 03
│ │ │ └── CrossAnalyse
│ │ │ ├── CrossAnalyse
│ │ │ │ ├── CrossAnalyse.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CrossAnalyse.sln
│ │ │ └── CrossAnalyse.suo
│ │ ├── 03_diy
│ │ │ └── AnyYGBirthdayByCross
│ │ │ ├── AnyYGBirthdayByCross
│ │ │ │ ├── AnyYGBirthdayByCross.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AnyYGBirthdayByCross.sln
│ │ │ └── AnyYGBirthdayByCross.suo
│ │ ├── 04
│ │ │ └── GridToWord
│ │ │ ├── GridToWord
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GridToWord.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GridToWord.sln
│ │ │ └── GridToWord.suo
│ │ ├── 04_diy
│ │ │ └── GridToExcel
│ │ │ ├── GridToExcel
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Fruit.cs
│ │ │ │ ├── GridToExcel.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GridToExcel.sln
│ │ │ └── GridToExcel.suo
│ │ ├── 05
│ │ │ └── UsePagination
│ │ │ ├── UsePagination
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePagination.csproj
│ │ │ ├── UsePagination.sln
│ │ │ └── UsePagination.suo
│ │ └── 05_diy
│ │ └── UsePagination
│ │ ├── UsePagination
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UsePagination.csproj
│ │ ├── UsePagination.sln
│ │ └── UsePagination.suo
│ ├── sl
│ │ ├── 12.01
│ │ │ └── ShowData
│ │ │ ├── ShowData
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowData.csproj
│ │ │ ├── ShowData.sln
│ │ │ └── ShowData.suo
│ │ ├── 12.02
│ │ │ └── GetCellInfo
│ │ │ ├── GetCellInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── GetCellInfo.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetCellInfo.sln
│ │ │ └── GetCellInfo.suo
│ │ ├── 12.03
│ │ │ └── DGVUpdateData
│ │ │ ├── DGVUpdateData
│ │ │ │ ├── DGVUpdateData.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DGVUpdateData.sln
│ │ │ └── DGVUpdateData.suo
│ │ ├── 12.04
│ │ │ └── 12.04.txt
│ │ ├── 12.05
│ │ │ └── DGVChanageColor
│ │ │ ├── DGVChanageColor
│ │ │ │ ├── DGVChanageColor.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DGVChanageColor.sln
│ │ │ └── DGVChanageColor.suo
│ │ ├── 12.06
│ │ │ └── 12.06.txt
│ │ ├── 12.07
│ │ │ └── DGVNotSort
│ │ │ ├── DGVNotSort
│ │ │ │ ├── DGVNotSort.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DGVNotSort.sln
│ │ │ └── DGVNotSort.suo
│ │ └── 12.08
│ │ └── DGVCombinCell
│ │ ├── DGVCombinCell
│ │ │ ├── DGVCombinCell.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DGVCombinCell.sln
│ │ └── DGVCombinCell.suo
│ └── zmhh
│ ├── 01
│ │ └── GridStyle
│ │ ├── GridStyle
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GridStyle.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GridStyle.sln
│ │ └── GridStyle.suo
│ ├── 01_zmhh
│ │ └── GridStyle
│ │ ├── GridStyle
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GridStyle.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Student.cs
│ │ ├── GridStyle.sln
│ │ └── GridStyle.suo
│ ├── 02
│ │ └── DataFormat
│ │ ├── DataFormat
│ │ │ ├── DataFormat.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataFormat.sln
│ │ └── DataFormat.suo
│ ├── 02_zmhh
│ │ └── DataFormat
│ │ ├── DataFormat
│ │ │ ├── DataFormat.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataFormat.sln
│ │ └── DataFormat.suo
│ ├── 03
│ │ └── CellAlignment
│ │ ├── CellAlignment
│ │ │ ├── CellAlignment.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CellAlignment.sln
│ │ └── CellAlignment.suo
│ ├── 03_zmhh
│ │ └── CellAlignment
│ │ ├── CellAlignment
│ │ │ ├── CellAlignment.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CellAlignment.sln
│ │ └── CellAlignment.suo
│ ├── 04
│ │ └── DropDownList
│ │ ├── DropDownList
│ │ │ ├── DropDownList.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DropDownList.sln
│ │ └── DropDownList.suo
│ ├── 04_zmhh
│ │ └── DropDownList
│ │ ├── DropDownList
│ │ │ ├── DropDownList.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Fruit.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DropDownList.sln
│ │ └── DropDownList.suo
│ ├── 05
│ │ └── CheckBoxInDataGridView
│ │ ├── CheckBoxInDataGridView
│ │ │ ├── CheckBoxInDataGridView.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CheckBoxInDataGridView.sln
│ │ └── CheckBoxInDataGridView.suo
│ └── 05_zmhh
│ └── CheckBoxInDataGridView
│ ├── CheckBoxInDataGridView
│ │ ├── CheckBoxInDataGridView.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Fruit.cs
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── CheckBoxInDataGridView.sln
│ └── CheckBoxInDataGridView.suo
├── 13
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ShowBusStation
│ │ │ ├── ShowBusStation
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowBusStation.csproj
│ │ │ ├── ShowBusStation.sln
│ │ │ └── ShowBusStation.suo
│ │ ├── 01_diy
│ │ │ └── ShowBanks
│ │ │ ├── ShowBanks
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowBanks.csproj
│ │ │ ├── ShowBanks.sln
│ │ │ └── ShowBanks.suo
│ │ ├── 02
│ │ │ └── DynamicLetter
│ │ │ ├── DynamicLetter
│ │ │ │ ├── DynamicLetter.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DynamicLetter.sln
│ │ │ └── DynamicLetter.suo
│ │ ├── 02_diy
│ │ │ └── ReverseOrder
│ │ │ ├── ReverseOrder
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ReverseOrder.csproj
│ │ │ ├── ReverseOrder.sln
│ │ │ └── ReverseOrder.suo
│ │ ├── 03
│ │ │ └── BranchMeans
│ │ │ ├── BranchMeans
│ │ │ │ ├── Account.cs
│ │ │ │ ├── BranchMeans.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Image
│ │ │ │ │ ├── 0_1.png
│ │ │ │ │ ├── 0.png
│ │ │ │ │ ├── 1_1.png
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2_1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ ├── 3_1.png
│ │ │ │ │ ├── 3.png
│ │ │ │ │ ├── 4_1.png
│ │ │ │ │ ├── 4.png
│ │ │ │ │ ├── 5_1.png
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 6_1.png
│ │ │ │ │ ├── 6.png
│ │ │ │ │ ├── 7_1.png
│ │ │ │ │ ├── 7.png
│ │ │ │ │ ├── 8_1.png
│ │ │ │ │ ├── 8.png
│ │ │ │ │ ├── 9_1.png
│ │ │ │ │ ├── 9.png
│ │ │ │ │ ├── Add1.png
│ │ │ │ │ ├── Add.png
│ │ │ │ │ ├── Amound1.png
│ │ │ │ │ ├── Amound.png
│ │ │ │ │ ├── back1.png
│ │ │ │ │ ├── back.png
│ │ │ │ │ ├── Bear1.png
│ │ │ │ │ ├── Bear.png
│ │ │ │ │ ├── bg.png
│ │ │ │ │ ├── c1.png
│ │ │ │ │ ├── ce1.png
│ │ │ │ │ ├── ce.png
│ │ │ │ │ ├── Close.jpg
│ │ │ │ │ ├── c.png
│ │ │ │ │ ├── Decr1.png
│ │ │ │ │ ├── Decr.png
│ │ │ │ │ ├── Deno1.png
│ │ │ │ │ ├── Deno.png
│ │ │ │ │ ├── Dot1.png
│ │ │ │ │ ├── Dot.png
│ │ │ │ │ ├── Humd1.png
│ │ │ │ │ ├── Hund.png
│ │ │ │ │ ├── Remove1.png
│ │ │ │ │ ├── Remove.png
│ │ │ │ │ ├── Ride1.png
│ │ │ │ │ ├── Ride.png
│ │ │ │ │ ├── sqrt1.png
│ │ │ │ │ └── sqrt.png
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── BranchMeans.sln
│ │ │ └── BranchMeans.suo
│ │ ├── 03_diy
│ │ │ └── RecordEmpInfo
│ │ │ ├── RecordEmpInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RecordEmpInfo.csproj
│ │ │ ├── RecordEmpInfo.sln
│ │ │ └── RecordEmpInfo.suo
│ │ ├── 04
│ │ │ └── ShowStuInfo
│ │ │ ├── ShowStuInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowStuInfo.csproj
│ │ │ ├── ShowStuInfo.sln
│ │ │ └── ShowStuInfo.suo
│ │ ├── 04_diy
│ │ │ └── ShowVehicleInfo
│ │ │ ├── ShowVehicleInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowVehicleInfo.csproj
│ │ │ ├── ShowVehicleInfo.sln
│ │ │ └── ShowVehicleInfo.suo
│ │ ├── 05
│ │ │ └── SealedUserInfo
│ │ │ ├── SealedUserInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SealedUserInfo.csproj
│ │ │ ├── SealedUserInfo.sln
│ │ │ └── SealedUserInfo.suo
│ │ └── 05_diy
│ │ └── SealedIndiviInfo
│ │ ├── SealedIndiviInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SealedIndiviInfo.csproj
│ │ ├── SealedIndiviInfo.suo
│ │ ├── SealedUserInfo.sln
│ │ └── SealedUserInfo.suo
│ ├── sl
│ │ ├── 13.01
│ │ │ └── 13.01.txt
│ │ ├── 13.02
│ │ │ └── ISingleJC
│ │ │ ├── ISingleJC
│ │ │ │ ├── ISingleJC.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── ISingleJC.sln
│ │ │ └── ISingleJC.suo
│ │ ├── 13.03
│ │ │ └── IShowJC
│ │ │ ├── IShowJC
│ │ │ │ ├── IShowJC.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── IShowJC.sln
│ │ │ └── IShowJC.suo
│ │ ├── 13.04
│ │ │ └── 13.04.txt
│ │ ├── 13.05
│ │ │ └── 13.05.txt
│ │ ├── 13.06
│ │ │ └── UseAClass
│ │ │ ├── UseAClass
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── UseAClass.csproj
│ │ │ ├── UseAClass.sln
│ │ │ └── UseAClass.suo
│ │ ├── 13.07
│ │ │ └── 13.07.txt
│ │ ├── 13.08
│ │ │ └── 13.08.txt
│ │ └── 13.09
│ │ └── UseSClass
│ │ ├── UseSClass
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseSClass.csproj
│ │ ├── UseSClass.sln
│ │ └── UseSClass.suo
│ └── zmhh
│ ├── 01
│ │ └── CalcRAreaByAbstractClass
│ │ ├── CalcRAreaByAbstractClass
│ │ │ ├── CalcRAreaByAbstractClass.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CalcRAreaByAbstractClass.sln
│ │ └── CalcRAreaByAbstractClass.suo
│ ├── 01_zmhh
│ │ └── CalcRAreaByAbstractClass
│ │ ├── CalcRAreaByAbstractClass
│ │ │ ├── CalcRAreaByAbstractClass.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CalcRAreaByAbstractClass.sln
│ │ └── CalcRAreaByAbstractClass.suo
│ ├── 02
│ │ └── AppInterface
│ │ ├── AppInterface
│ │ │ ├── AppInterface.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AppInterface.sln
│ │ └── AppInterface.suo
│ ├── 02_zmhh
│ │ └── AppInterface
│ │ ├── AppInterface
│ │ │ ├── AppInterface.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AppInterface.sln
│ │ └── AppInterface.suo
│ ├── 03
│ │ └── UseInterface
│ │ ├── UseInterAsParam
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseInterAsParam.csproj
│ │ ├── UseInterface.sln
│ │ └── UseInterface.suo
│ ├── 03_zmhh
│ │ └── UseInterface
│ │ ├── UseInterAsParam
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UseInterAsParam.csproj
│ │ ├── UseInterface.sln
│ │ └── UseInterface.suo
│ ├── 04
│ │ └── AddByVirtualMethod
│ │ ├── AddByVirtualMethod
│ │ │ ├── AddByVirtualMethod.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddByVirtualMethod.sln
│ │ └── AddByVirtualMethod.suo
│ ├── 04_zmhh
│ │ └── AddByVirtualMethod
│ │ ├── AddByVirtualMethod
│ │ │ ├── AddByVirtualMethod.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AddByVirtualMethod.sln
│ │ └── AddByVirtualMethod.suo
│ ├── 05
│ │ └── GeneralImplement
│ │ ├── GeneralImplement.sln
│ │ ├── GeneralImplement.suo
│ │ └── MutilInherit
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── MutilInherit.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── 05_zmhh
│ └── GeneralImplement
│ ├── GeneralImplement.sln
│ ├── GeneralImplement.suo
│ └── MutilInherit
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── MutilInherit.csproj
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── 14
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ProcedureQuery
│ │ │ ├── ProcedureQuery
│ │ │ │ ├── app.config
│ │ │ │ ├── DataClasses.dbml
│ │ │ │ ├── DataClasses.dbml.layout
│ │ │ │ ├── DataClasses.designer.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── ProcedureQuery.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ProcedureQuery.sln
│ │ │ └── ProcedureQuery.suo
│ │ ├── 01_diy
│ │ │ └── MultiTableJoin
│ │ │ ├── MultiTableJoin
│ │ │ │ ├── app.config
│ │ │ │ ├── DataClasses.dbml
│ │ │ │ ├── DataClasses.dbml.layout
│ │ │ │ ├── DataClasses.designer.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── MultiTableJoin.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MultiTableJoin.sln
│ │ │ └── MultiTableJoin.suo
│ │ ├── 02
│ │ │ └── LinqLogin
│ │ │ ├── LinqLogin
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── LinqClass.dbml
│ │ │ │ ├── LinqClass.dbml.layout
│ │ │ │ ├── LinqClass.designer.cs
│ │ │ │ ├── LinqLogin.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqLogin.sln
│ │ │ └── LinqLogin.suo
│ │ ├── 02_diy
│ │ │ └── SQLInner
│ │ │ ├── SQLInner
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── SQLInner.csproj
│ │ │ ├── SQLInner.sln
│ │ │ └── SQLInner.suo
│ │ ├── 03
│ │ │ └── LinqPages
│ │ │ ├── LinqPages
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── LinqClass.dbml
│ │ │ │ ├── LinqClass.dbml.layout
│ │ │ │ ├── LinqClass.designer.cs
│ │ │ │ ├── LinqPages.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqPages.sln
│ │ │ └── LinqPages.suo
│ │ ├── 03_diy
│ │ │ └── LinqPages
│ │ │ ├── LinqPages
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── LinqClass.dbml
│ │ │ │ ├── LinqClass.dbml.layout
│ │ │ │ ├── LinqClass.designer.cs
│ │ │ │ ├── LinqPages.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqPages.sln
│ │ │ └── LinqPages.suo
│ │ ├── 04
│ │ │ └── TakeWhile
│ │ │ ├── TakeWhile
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── TakeWhile.csproj
│ │ │ │ └── TakeWhile.csproj.user
│ │ │ ├── TakeWhile.sln
│ │ │ └── TakeWhile.suo
│ │ ├── 04_diy
│ │ │ └── Take
│ │ │ ├── Take
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Take.csproj
│ │ │ ├── Take.sln
│ │ │ └── Take.suo
│ │ ├── 05
│ │ │ └── XmlToDatabase
│ │ │ ├── XmlToDatabase
│ │ │ │ ├── app.config
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── linqtosql.dbml
│ │ │ │ ├── linqtosql.dbml.layout
│ │ │ │ ├── linqtosql.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── XmlToDatabase.csproj
│ │ │ ├── XmlToDatabase.sln
│ │ │ └── XmlToDatabase.suo
│ │ └── 05_diy
│ │ └── LinqToXmlConvert
│ │ ├── LinqToXmlConvert
│ │ │ ├── app.config
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── LinqToXmlConvert.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LinqToXmlConvert.sln
│ │ └── LinqToXmlConvert.suo
│ ├── sl
│ │ ├── 14.01
│ │ │ └── 14.01.txt
│ │ ├── 14.02
│ │ │ └── varQuery
│ │ │ ├── varQuery
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── varQuery.csproj
│ │ │ ├── varQuery.sln
│ │ │ └── varQuery.suo
│ │ ├── 14.03
│ │ │ └── useLambda
│ │ │ ├── useLambda
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── useLambda.csproj
│ │ │ ├── useLambda.sln
│ │ │ └── useLambda.suo
│ │ ├── 14.04
│ │ │ └── LINQQuery
│ │ │ ├── LINQQuery
│ │ │ │ ├── LINQQuery.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── LINQQuery.sln
│ │ │ └── LINQQuery.suo
│ │ ├── 14.05
│ │ │ └── LINQSelectSql
│ │ │ ├── LINQSelectSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LINQSelectSql.csproj
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQSelectSql.sln
│ │ │ └── LINQSelectSql.suo
│ │ ├── 14.06
│ │ │ └── LINQAddSql
│ │ │ ├── LINQAddSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LINQAddSql.csproj
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQAddSql.sln
│ │ │ └── LINQAddSql.suo
│ │ ├── 14.07
│ │ │ └── LINQUpdateSql
│ │ │ ├── LINQUpdateSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── linqtosqlClass.cs
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── LINQUpdateSql.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQUpdateSql.sln
│ │ │ └── LINQUpdateSql.suo
│ │ ├── 14.08
│ │ │ └── LINQDelSql
│ │ │ ├── LINQDelSql
│ │ │ │ ├── app.config
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LINQDelSql.csproj
│ │ │ │ ├── linqtosqlClass.dbml
│ │ │ │ ├── linqtosqlClass.dbml.layout
│ │ │ │ ├── linqtosqlClass.designer.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LINQDelSql.sln
│ │ │ └── LINQDelSql.suo
│ │ ├── 14.09
│ │ │ └── LinqOperObjects
│ │ │ ├── LinqOperObjects
│ │ │ │ ├── LinqOperObjects.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── LinqOperObjects.sln
│ │ │ └── LinqOperObjects.suo
│ │ ├── 14.10
│ │ │ └── LinqShowDS
│ │ │ ├── LinqShowDS
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── LinqShowDS.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── LinqShowDS.sln
│ │ │ └── LinqShowDS.suo
│ │ └── 14.11
│ │ └── LinqOperXML
│ │ ├── LinqOperXML
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── LinqOperXML.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── LinqOperXML.sln
│ │ └── LinqOperXML.suo
│ └── zmhh
│ ├── 01
│ │ └── Contains
│ │ ├── Contains
│ │ │ ├── Contains.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Contains.sln
│ │ └── Contains.suo
│ ├── 01_zmhh
│ │ └── ALL
│ │ ├── ALL
│ │ │ ├── ALL.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ALL.sln
│ │ └── ALL.suo
│ ├── 02
│ │ └── RandomSeqByLinq
│ │ ├── RandomSeqByLinq
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── RandomSeqByLinq.csproj
│ │ ├── RandomSeqByLinq.sln
│ │ └── RandomSeqByLinq.suo
│ ├── 02_zmhh
│ │ └── CreateStringByLinq
│ │ ├── CreateStringByLinq
│ │ │ ├── CreateStringByLinq.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── CreateStringByLinq.sln
│ │ └── CreateStringByLinq.suo
│ ├── 03
│ │ └── Count
│ │ ├── Count
│ │ │ ├── app.config
│ │ │ ├── Count.csproj
│ │ │ ├── DataClasses.cs
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Count.sln
│ │ └── Count.suo
│ ├── 03_zmhh
│ │ └── Sum
│ │ ├── Sum
│ │ │ ├── app.config
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Sum.csproj
│ │ ├── Sum.sln
│ │ └── Sum.suo
│ ├── 04
│ │ └── Average
│ │ ├── Average
│ │ │ ├── app.config
│ │ │ ├── Average.csproj
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Average.sln
│ │ └── Average.suo
│ ├── 04_zmhh
│ │ └── Max
│ │ ├── Max
│ │ │ ├── app.config
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Max.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Max.sln
│ │ └── Max.suo
│ ├── 05
│ │ └── Intersect
│ │ ├── Intersect
│ │ │ ├── app.config
│ │ │ ├── DataClasses.cs
│ │ │ ├── DataClasses.dbml
│ │ │ ├── DataClasses.dbml.layout
│ │ │ ├── DataClasses.designer.cs
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Intersect.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Intersect.sln
│ │ └── Intersect.suo
│ └── 05_zmhh
│ └── Except
│ ├── Except
│ │ ├── app.config
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ ├── DataClasses.designer.cs
│ │ ├── Except.csproj
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Except.sln
│ └── Except.suo
├── 15
│ ├── qjyy
│ │ ├── 01
│ │ │ └── CreateFile
│ │ │ └── CreateFile
│ │ │ ├── CreateFile
│ │ │ │ ├── CreateFile.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CreateFile.sln
│ │ │ └── CreateFile.suo
│ │ ├── 01_diy
│ │ │ └── CreateDirByDate
│ │ │ ├── CreateDirByDate
│ │ │ │ ├── CreateDirByDate.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CreateDirByDate.sln
│ │ │ └── CreateDirByDate.suo
│ │ ├── 02
│ │ │ └── FileBatchChangeName
│ │ │ ├── FileBatchChangeName
│ │ │ │ ├── copy.gif
│ │ │ │ ├── FileBatchChangeName.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── gg.gif
│ │ │ │ ├── netspell.gif
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── 图标 (166).ico
│ │ │ │ ├── 图标 (179).ico
│ │ │ │ ├── 图标 (220).ico
│ │ │ │ ├── 图标 (99).ico
│ │ │ │ └── 图标.ico
│ │ │ ├── FileBatchChangeName.sln
│ │ │ └── FileBatchChangeName.suo
│ │ ├── 02_diy
│ │ │ └── CopyLotFiles
│ │ │ ├── CopyLotFiles
│ │ │ │ ├── CopyLotFiles.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CopyLotFiles.sln
│ │ │ └── CopyLotFiles.suo
│ │ ├── 03
│ │ │ └── FileCopyPlan
│ │ │ ├── FileCopyPlan
│ │ │ │ ├── FileCopyPlan.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileCopyPlan.sln
│ │ │ └── FileCopyPlan.suo
│ │ ├── 03_diy
│ │ │ └── FileCopy
│ │ │ ├── FileCopy
│ │ │ │ ├── FileCopy.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileCopy.sln
│ │ │ └── FileCopy.suo
│ │ ├── 04
│ │ │ └── CamouflageFolder
│ │ │ ├── CamouflageFolder
│ │ │ │ ├── CamouflageFolder.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CamouflageFolder.sln
│ │ │ └── CamouflageFolder.suo
│ │ ├── 04_diy
│ │ │ └── FileIco
│ │ │ ├── FileIco
│ │ │ │ ├── FileIco.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileIco.sln
│ │ │ └── FileIco.suo
│ │ ├── 05
│ │ │ └── ManageFileByType
│ │ │ ├── ManageFileByType
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── ManageFileByType.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ManageFileByType.sln
│ │ │ └── ManageFileByType.suo
│ │ └── 05_diy
│ │ └── FileComminuteUnite
│ │ ├── FileComminuteUnite
│ │ │ ├── FileComminuteUnite.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FileComminuteUnite.sln
│ │ └── FileComminuteUnite.suo
│ ├── sl
│ │ ├── 15.01
│ │ │ └── UseFile
│ │ │ ├── UseFile
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseFile.csproj
│ │ │ ├── UseFile.sln
│ │ │ └── UseFile.suo
│ │ ├── 15.02
│ │ │ └── UseFileInfo
│ │ │ ├── UseFileInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseFileInfo.csproj
│ │ │ ├── UseFileInfo.sln
│ │ │ └── UseFileInfo.suo
│ │ ├── 15.03
│ │ │ └── UseDirectory
│ │ │ ├── UseDirectory
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseDirectory.csproj
│ │ │ ├── UseDirectory.sln
│ │ │ └── UseDirectory.suo
│ │ ├── 15.04
│ │ │ └── UseDirectoryInfo
│ │ │ ├── UseDirectoryInfo
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseDirectoryInfo.csproj
│ │ │ ├── UseDirectoryInfo.sln
│ │ │ └── UseDirectoryInfo.suo
│ │ ├── 15.05
│ │ │ └── 15.05.txt
│ │ ├── 15.06
│ │ │ └── 15.06.txt
│ │ ├── 15.07
│ │ │ └── 15.07.txt
│ │ ├── 15.08
│ │ │ └── 15.08.txt
│ │ ├── 15.09
│ │ │ └── 15.09.txt
│ │ ├── 15.10
│ │ │ └── 15.10.txt
│ │ ├── 15.11
│ │ │ └── 15.11.txt
│ │ ├── 15.12
│ │ │ └── 15.12.txt
│ │ ├── 15.13
│ │ │ └── 15.13.txt
│ │ ├── 15.14
│ │ │ └── 15.14.txt
│ │ ├── 15.15
│ │ │ └── 15.15.txt
│ │ ├── 15.16
│ │ │ └── 15.16.txt
│ │ ├── 15.17
│ │ │ └── 15.17.txt
│ │ ├── 15.18
│ │ │ └── 15.18.txt
│ │ ├── 15.19
│ │ │ └── 15.19.txt
│ │ ├── 15.20
│ │ │ └── 15.20.txt
│ │ ├── 15.21
│ │ │ └── 15.21.txt
│ │ ├── 15.22
│ │ │ └── 15.22.txt
│ │ ├── 15.23
│ │ │ └── 15.23.txt
│ │ ├── 15.24
│ │ │ └── RWTxtByIO
│ │ │ ├── RWTxtByIO
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── RWTxtByIO.csproj
│ │ │ ├── RWTxtByIO.sln
│ │ │ └── RWTxtByIO.suo
│ │ └── 15.25
│ │ └── RWBFileByIO
│ │ ├── RWBFileByIO
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RWBFileByIO.csproj
│ │ ├── RWBFileByIO.sln
│ │ └── RWBFileByIO.suo
│ └── zmhh
│ ├── 01
│ │ └── GetFileInfo
│ │ ├── GetFileInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetFileInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetFileInfo.sln
│ │ └── GetFileInfo.suo
│ ├── 01_zmhh
│ │ └── FileExt
│ │ ├── FileExt
│ │ │ ├── FileExt.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── FileExt.sln
│ │ └── FileExt.suo
│ ├── 02
│ │ └── GetDirectoryInfo
│ │ ├── GetDirectoryInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetDirectoryInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetDirectoryInfo.sln
│ │ └── GetDirectoryInfo.suo
│ ├── 02_zmhh
│ │ └── DeleteAllFiles
│ │ ├── DeleteAllFiles
│ │ │ ├── DeleteAllFiles.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DeleteAllFiles.sln
│ │ └── DeleteAllFiles.suo
│ ├── 03
│ │ └── INIFileOperate
│ │ ├── INIFileOperate
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── INIFileOperate.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── INIFileOperate.sln
│ │ └── INIFileOperate.suo
│ ├── 03_zmhh
│ │ └── GetODBCInfo
│ │ ├── GetODBCInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetODBCInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetODBCInfo.sln
│ │ └── GetODBCInfo.suo
│ ├── 04
│ │ └── ReadFileByLine
│ │ ├── ReadFileByLine
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReadFileByLine.csproj
│ │ ├── ReadFileByLine.sln
│ │ └── ReadFileByLine.suo
│ ├── 04_zmhh
│ │ └── ReadFirstLine
│ │ ├── ReadFirstLine
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ReadFirstLine.csproj
│ │ ├── ReadFirstLine.sln
│ │ └── ReadFirstLine.suo
│ ├── 05
│ │ └── GetUpDir
│ │ ├── GetUpDir
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GetUpDir.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetUpDir.sln
│ │ └── GetUpDir.suo
│ └── 05_zmhh
│ └── GetRootDir
│ ├── GetUpDir
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── GetUpDir.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── GetUpDir.sln
│ └── GetUpDir.suo
├── 16
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ChineseCode
│ │ │ ├── ChineseCode
│ │ │ │ ├── ChineseCode.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChineseCode.sln
│ │ │ └── ChineseCode.suo
│ │ ├── 01_diy
│ │ │ └── DrawValidateCode
│ │ │ ├── DrawValidateCode
│ │ │ │ ├── DrawValidateCode.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DrawValidateCode.sln
│ │ │ └── DrawValidateCode.suo
│ │ ├── 02
│ │ │ └── PictureBatchConversion
│ │ │ ├── PictureBatchConversion
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── PictureBatchConversion.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ │ ├── 保存11.ico
│ │ │ │ ├── 保存1.ico
│ │ │ │ ├── 图标 (163).png
│ │ │ │ ├── 图标 (23).ico
│ │ │ │ ├── 图标 (28).png
│ │ │ │ ├── 图标 (29).ico
│ │ │ │ ├── 打开1.ico
│ │ │ │ └── 打开.ico
│ │ │ ├── PictureBatchConversion.sln
│ │ │ └── PictureBatchConversion.suo
│ │ ├── 02_diy
│ │ │ └── GIFChangeJPG
│ │ │ ├── GIFChangeJPG
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GIFChangeJPG.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GIFChangeJPG.sln
│ │ │ └── GIFChangeJPG.suo
│ │ ├── 03
│ │ │ └── WebSnap
│ │ │ ├── WebSnap
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── WebSnap.csproj
│ │ │ │ └── 转到.ico
│ │ │ ├── WebSnap.sln
│ │ │ └── WebSnap.suo
│ │ ├── 03_diy
│ │ │ └── GetScreen
│ │ │ ├── GetScreen
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetScreen.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Setup.ini
│ │ │ ├── GetScreen.sln
│ │ │ └── GetScreen.suo
│ │ ├── 04
│ │ │ └── IMGwatermark
│ │ │ ├── IMGwatermark
│ │ │ │ ├── Frm_Browser.cs
│ │ │ │ ├── Frm_Browser.Designer.cs
│ │ │ │ ├── Frm_Browser.resx
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IMGwatermark.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── IMGwatermark.sln
│ │ │ └── IMGwatermark.suo
│ │ ├── 04_diy
│ │ │ └── IMGAddDate
│ │ │ ├── IMGAddDate
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── IMGAddDate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── Resources
│ │ │ ├── IMGAddDate.sln
│ │ │ └── IMGAddDate.suo
│ │ ├── 05
│ │ │ └── ChuffedFarm
│ │ │ ├── ChuffedFarm
│ │ │ │ ├── ChuffedFarm.csproj
│ │ │ │ ├── CPictureBox.cs
│ │ │ │ ├── CPictureBox.Designer.cs
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── images
│ │ │ │ │ ├── bloom.png
│ │ │ │ │ ├── fruit.png
│ │ │ │ │ ├── grow.png
│ │ │ │ │ ├── plowland.jpg
│ │ │ │ │ ├── seed2.png
│ │ │ │ │ ├── seed.png
│ │ │ │ │ ├── 开花1.png
│ │ │ │ │ ├── 开花.png
│ │ │ │ │ ├── 播种1.png
│ │ │ │ │ ├── 播种.png
│ │ │ │ │ ├── 收获1.png
│ │ │ │ │ ├── 收获.png
│ │ │ │ │ ├── 生长1.png
│ │ │ │ │ ├── 生长.png
│ │ │ │ │ ├── 结果1.png
│ │ │ │ │ └── 结果.png
│ │ │ │ ├── PlantState.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChuffedFarm.sln
│ │ │ └── ChuffedFarm.suo
│ │ └── 05_diy
│ │ └── ChuffedFarm_Extend
│ │ ├── ChuffedFarm
│ │ │ ├── ChuffedFarm.csproj
│ │ │ ├── CPictureBox.cs
│ │ │ ├── CPictureBox.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── images
│ │ │ │ ├── bloom.png
│ │ │ │ ├── fruit.png
│ │ │ │ ├── grow.png
│ │ │ │ ├── plowland.jpg
│ │ │ │ ├── seed2.png
│ │ │ │ ├── seed.png
│ │ │ │ ├── 开花1.png
│ │ │ │ ├── 开花.png
│ │ │ │ ├── 播种1.png
│ │ │ │ ├── 播种.png
│ │ │ │ ├── 收获1.png
│ │ │ │ ├── 收获.png
│ │ │ │ ├── 生长1.png
│ │ │ │ ├── 生长.png
│ │ │ │ ├── 结果1.png
│ │ │ │ └── 结果.png
│ │ │ ├── PlantState.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ChuffedFarm.sln
│ │ └── ChuffedFarm.suo
│ ├── sl
│ │ ├── 16.01
│ │ │ └── 16.01.txt
│ │ ├── 16.02
│ │ │ └── 16.02.txt
│ │ ├── 16.03
│ │ │ └── 16.03.txt
│ │ ├── 16.04
│ │ │ └── 16.04.txt
│ │ ├── 16.05
│ │ │ └── UseBrush
│ │ │ ├── UseBrush
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseBrush.csproj
│ │ │ ├── UseBrush.sln
│ │ │ └── UseBrush.suo
│ │ ├── 16.06
│ │ │ └── UseHatchBrush
│ │ │ ├── UseHatchBrush
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseHatchBrush.csproj
│ │ │ ├── UseHatchBrush.sln
│ │ │ └── UseHatchBrush.suo
│ │ ├── 16.07
│ │ │ └── UseLinerGradientBrush
│ │ │ ├── UseLinerGradientBrush
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseLinerGradientBrush.csproj
│ │ │ ├── UseLinerGradientBrush.sln
│ │ │ └── UseLinerGradientBrush.suo
│ │ ├── 16.08
│ │ │ └── DLine
│ │ │ ├── DLine
│ │ │ │ ├── DLine.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DLine.sln
│ │ │ └── DLine.suo
│ │ ├── 16.09
│ │ │ └── DRectangle
│ │ │ ├── DRectangle
│ │ │ │ ├── DRectangle.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DRectangle.sln
│ │ │ └── DRectangle.suo
│ │ ├── 16.10
│ │ │ └── DEllipse
│ │ │ ├── DEllipse
│ │ │ │ ├── DEllipse.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DEllipse.sln
│ │ │ └── DEllipse.suo
│ │ ├── 16.11
│ │ │ └── DArc
│ │ │ ├── DArc
│ │ │ │ ├── DArc.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DArc.sln
│ │ │ └── DArc.suo
│ │ ├── 16.12
│ │ │ └── DPie
│ │ │ ├── DPie
│ │ │ │ ├── DPie.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DPie.sln
│ │ │ └── DPie.suo
│ │ ├── 16.13
│ │ │ └── DPolygon
│ │ │ ├── DPolygon
│ │ │ │ ├── DPolygon.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DPolygon.sln
│ │ │ └── DPolygon.suo
│ │ ├── 16.14
│ │ │ └── DString
│ │ │ ├── DString
│ │ │ │ ├── DString.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DString.sln
│ │ │ └── DString.suo
│ │ └── 16.15
│ │ └── DImage
│ │ ├── DImage
│ │ │ ├── DImage.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DImage.sln
│ │ └── DImage.suo
│ └── zmhh
│ ├── 01
│ │ └── Cachet
│ │ ├── Cachet
│ │ │ ├── Cachet.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Cachet.sln
│ │ └── Cachet.suo
│ ├── 01_zmhh
│ │ └── Cachet
│ │ ├── Cachet
│ │ │ ├── Cachet.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Cachet.sln
│ │ └── Cachet.suo
│ ├── 02
│ │ └── WaveImage
│ │ ├── WaveImage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WaveImage.csproj
│ │ ├── WaveImage.sln
│ │ └── WaveImage.suo
│ ├── 02_zmhh
│ │ └── WaveImage
│ │ ├── WaveImage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── WaveImage.csproj
│ │ ├── WaveImage.sln
│ │ └── WaveImage.suo
│ ├── 03
│ │ └── ImgMicroimage
│ │ ├── ImgMicroimage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── ImgMicroimage.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── 图标 (55).png
│ │ │ ├── 图标 (68).png
│ │ │ ├── 打开1.ico
│ │ │ └── 打开.ico
│ │ ├── ImgMicroimage.sln
│ │ └── ImgMicroimage.suo
│ ├── 03_zmhh
│ │ └── ImgMicroimage
│ │ ├── ImgMicroimage
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── ImgMicroimage.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Resources
│ │ │ ├── 图标 (55).png
│ │ │ ├── 图标 (68).png
│ │ │ ├── 打开1.ico
│ │ │ └── 打开.ico
│ │ ├── ImgMicroimage.sln
│ │ └── ImgMicroimage.suo
│ ├── 04
│ │ └── RevolveImageByAngle
│ │ ├── RevolveImageByAngle
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RevolveImageByAngle.csproj
│ │ ├── RevolveImageByAngle.sln
│ │ └── RevolveImageByAngle.suo
│ ├── 04_zmhh
│ │ └── RevolveJPG
│ │ ├── RevolveJPG
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RevolveJPG.csproj
│ │ ├── RevolveJPG.sln
│ │ └── RevolveJPG.suo
│ ├── 05
│ │ └── BassoRelievo
│ │ ├── BassoRelievo
│ │ │ ├── BassoRelievo.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BassoRelievo.sln
│ │ └── BassoRelievo.suo
│ └── 05_zmhh
│ └── NegativeImage
│ ├── NegativeImage
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── NegativeImage.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── NegativeImage.sln
│ └── NegativeImage.suo
├── 17
│ ├── qjyy
│ │ ├── 01
│ │ │ └── PrintStuResume
│ │ │ ├── PrintStuResume
│ │ │ │ ├── frmMain.cs
│ │ │ │ ├── frmMain.Designer.cs
│ │ │ │ ├── frmMain.resx
│ │ │ │ ├── frmPrint.cs
│ │ │ │ ├── frmPrint.Designer.cs
│ │ │ │ ├── frmPrint.resx
│ │ │ │ ├── PrintStuResume.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintStuResume.sln
│ │ │ └── PrintStuResume.suo
│ │ ├── 01_diy
│ │ │ └── PrintText
│ │ │ ├── PrintText
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PrintText.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintText.sln
│ │ │ └── PrintText.suo
│ │ ├── 02
│ │ │ └── PrintStuCertificate
│ │ │ ├── PrintStuCertificate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PrintStuCertificate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintStuCertificate.sln
│ │ │ └── PrintStuCertificate.suo
│ │ ├── 02_diy
│ │ │ └── PrintEmptyCertificate
│ │ │ ├── PrintEmptyCertificate
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── PrintEmptyCertificate.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── PrintEmptyCertificate.sln
│ │ │ └── PrintEmptyCertificate.suo
│ │ ├── 03
│ │ │ └── DisplayGetPrize
│ │ │ ├── DisplayGetPrize
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── DisplayGetPrize.csproj
│ │ │ │ ├── DisplayGetPrize.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DisplayGetPrize.sln
│ │ │ └── DisplayGetPrize.suo
│ │ ├── 03_diy
│ │ │ └── DisplayGetPrize
│ │ │ ├── DisplayGetPrize
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── DisplayGetPrize.csproj
│ │ │ │ ├── DisplayGetPrize.csproj.user
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── DisplayGetPrize.sln
│ │ │ └── DisplayGetPrize.suo
│ │ ├── 04
│ │ │ └── GetPercent
│ │ │ ├── GetPercent
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetPercent.csproj
│ │ │ │ ├── GetPercent.csproj.user
│ │ │ │ ├── MyCrystalReport.cs
│ │ │ │ ├── MyCrystalReport.rpt
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetPercent.sln
│ │ │ └── GetPercent.suo
│ │ ├── 04_diy
│ │ │ └── GetPercent
│ │ │ ├── GetPercent
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetPercent.csproj
│ │ │ │ ├── GetPercent.csproj.user
│ │ │ │ ├── MyCrystalReport.cs
│ │ │ │ ├── MyCrystalReport.rpt
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetPercent.sln
│ │ │ └── GetPercent.suo
│ │ ├── 05
│ │ │ └── GroupByClass
│ │ │ ├── GroupByClass
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GroupByClass.csproj
│ │ │ │ ├── GroupByClass.csproj.user
│ │ │ │ ├── MyCrystalReport.cs
│ │ │ │ ├── MyCrystalReport.rpt
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GroupByClass.sln
│ │ │ └── GroupByClass.suo
│ │ └── 05_diy
│ │ └── GroupByClass
│ │ ├── GroupByClass
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── GroupByClass.csproj
│ │ │ ├── GroupByClass.csproj.user
│ │ │ ├── MyCrystalReport.cs
│ │ │ ├── MyCrystalReport.rpt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GroupByClass.sln
│ │ └── GroupByClass.suo
│ ├── sl
│ │ ├── 17.01
│ │ │ └── CreateCReport
│ │ │ ├── CreateCReport
│ │ │ │ ├── CreateCReport.csproj
│ │ │ │ ├── CreateCReport.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CreateCReport.sln
│ │ │ └── CreateCReport.suo
│ │ ├── 17.02
│ │ │ └── CReportGroup
│ │ │ ├── CReportGroup
│ │ │ │ ├── CReportGroup.csproj
│ │ │ │ ├── CReportGroup.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportGroup.sln
│ │ │ └── CReportGroup.suo
│ │ ├── 17.03
│ │ │ └── CReportSort
│ │ │ ├── CReportSort
│ │ │ │ ├── CReportSort.csproj
│ │ │ │ ├── CReportSort.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportSort.sln
│ │ │ └── CReportSort.suo
│ │ ├── 17.04
│ │ │ └── CReportFilter
│ │ │ ├── CReportFilter
│ │ │ │ ├── CReportFilter.csproj
│ │ │ │ ├── CReportFilter.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportFilter.sln
│ │ │ └── CReportFilter.suo
│ │ ├── 17.05
│ │ │ └── 17.05.png
│ │ ├── 17.06
│ │ │ └── CReportImage
│ │ │ ├── CReportImage
│ │ │ │ ├── CReportImage.csproj
│ │ │ │ ├── CReportImage.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportImage.sln
│ │ │ └── CReportImage.suo
│ │ ├── 17.07
│ │ │ └── CReportChild
│ │ │ ├── CReportChild
│ │ │ │ ├── CReportChild.csproj
│ │ │ │ ├── CReportChild.csproj.user
│ │ │ │ ├── CrystalReport1.cs
│ │ │ │ ├── CrystalReport1.rpt
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CReportChild.sln
│ │ │ └── CReportChild.suo
│ │ ├── 17.08
│ │ │ └── 17.08.txt
│ │ ├── 17.09
│ │ │ └── 17.09.txt
│ │ ├── 17.10
│ │ │ └── UsePrintDocument
│ │ │ ├── UsePrintDocument
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePrintDocument.csproj
│ │ │ ├── UsePrintDocument.sln
│ │ │ └── UsePrintDocument.suo
│ │ ├── 17.11
│ │ │ └── UsePrintPreviewControl
│ │ │ ├── UsePrintPreviewControl
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UsePrintPreviewControl.csproj
│ │ │ ├── UsePrintPreviewControl.sln
│ │ │ └── UsePrintPreviewControl.suo
│ │ ├── 17.12
│ │ │ └── 17.12.txt
│ │ ├── 17.13
│ │ │ └── 17.13.txt
│ │ └── 17.14
│ │ └── 17.14.txt
│ └── zmhh
│ ├── 01
│ │ └── HPrint
│ │ ├── HPrint
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── HPrint.csproj
│ │ │ ├── PrintClass.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── HPrint.sln
│ │ └── HPrint.suo
│ ├── 01_zmhh
│ │ └── VPrint
│ │ ├── VPrint
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintClass.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── VPrint.csproj
│ │ ├── VPrint.sln
│ │ └── VPrint.suo
│ ├── 02
│ │ └── SetPrintRange
│ │ ├── SetPrintRange
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SetPrintRange.csproj
│ │ ├── SetPrintRange.sln
│ │ └── SetPrintRange.suo
│ ├── 02_zmhh
│ │ └── PrintTopFive
│ │ ├── PrintTopFive
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintTopFive.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PrintTopFive.sln
│ │ └── PrintTopFive.suo
│ ├── 03
│ │ └── PrintGoodsInBill
│ │ ├── PrintGoodsInBill
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintGoodsInBill.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PrintGoodsInBill.sln
│ │ └── PrintGoodsInBill.suo
│ ├── 03_zmhh
│ │ └── PrintGoodsOutBill
│ │ ├── PrintGoodsOutBill
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── PrintGoodsOutBill.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── PrintGoodsOutBill.sln
│ │ └── PrintGoodsOutBill.suo
│ ├── 04
│ │ └── BackImage
│ │ ├── BackImage
│ │ │ ├── BackImage.csproj
│ │ │ ├── BackImage.csproj.user
│ │ │ ├── CrystalReport1.cs
│ │ │ ├── CrystalReport1.rpt
│ │ │ ├── Ex21_03.suo
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BackImage.sln
│ │ └── BackImage.suo
│ ├── 04_zmhh
│ │ └── ItemImage
│ │ ├── ItemImage
│ │ │ ├── CrystalReport1.cs
│ │ │ ├── CrystalReport1.rpt
│ │ │ ├── Ex21_03.suo
│ │ │ ├── Ex21_04.sln
│ │ │ ├── Ex21_04.suo
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── ItemImage.csproj
│ │ │ ├── ItemImage.csproj.user
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ItemImage.sln
│ │ └── ItemImage.suo
│ ├── 05
│ │ └── CrystalReportPrintDateTime
│ │ ├── CrystalReportPrintDateTime
│ │ │ ├── CrystalReportPrintDateTime.csproj
│ │ │ ├── CrystalReportPrintDateTime.csproj.user
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.Designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── MyCrystalReport.cs
│ │ │ ├── MyCrystalReport.rpt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── CrystalReportPrintDateTime.sln
│ │ └── CrystalReportPrintDateTime.suo
│ └── 05_zmhh
│ └── CrystalReportPrintDateTime
│ ├── CrystalReportPrintDateTime
│ │ ├── CrystalReportPrintDateTime.csproj
│ │ ├── CrystalReportPrintDateTime.csproj.user
│ │ ├── Frm_Main.cs
│ │ ├── Frm_Main.Designer.cs
│ │ ├── Frm_Main.resx
│ │ ├── MyCrystalReport.cs
│ │ ├── MyCrystalReport.rpt
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── CrystalReportPrintDateTime.sln
│ └── CrystalReportPrintDateTime.suo
├── 18
│ ├── qjyy
│ │ ├── 01
│ │ │ └── NetInfoAndFlux
│ │ │ ├── NetInfoAndFlux
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── NetInfoAndFlux.csproj
│ │ │ │ ├── NetInfo.cs
│ │ │ │ ├── NetStruct.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── NetInfoAndFlux.sln
│ │ │ └── NetInfoAndFlux.suo
│ │ ├── 01_diy
│ │ │ └── DetectNetState
│ │ │ ├── 1.bmp
│ │ │ ├── DetectNetState.csproj
│ │ │ ├── DetectNetState.sln
│ │ │ ├── DetectNetState.suo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── 02
│ │ │ └── CRRemoteComputer
│ │ │ ├── CRRemoteComputer
│ │ │ │ ├── CRRemoteComputer.csproj
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── CRRemoteComputer.sln
│ │ │ └── CRRemoteComputer.suo
│ │ ├── 02_diy
│ │ │ └── TimeCloseComputer
│ │ │ ├── TimeCloseComputer
│ │ │ │ ├── db.mdb
│ │ │ │ ├── false.jpg
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── TimeCloseComputer.csproj
│ │ │ │ ├── TimeCloseComputer.csproj.user
│ │ │ │ ├── true.jpg
│ │ │ │ ├── 图标 (187).ico
│ │ │ │ ├── 图标 (18).ico
│ │ │ │ └── 图标 (93).ico
│ │ │ ├── TimeCloseComputer.sln
│ │ │ └── TimeCloseComputer.suo
│ │ ├── 03
│ │ │ └── MRBrowser
│ │ │ ├── MRBrowser
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MRBrowser.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MRBrowser.sln
│ │ │ └── MRBrowser.suo
│ │ ├── 03_diy
│ │ │ └── MakeCustomBrowser
│ │ │ ├── MakeCustomBrowser
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── MakeCustomBrowser.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── MakeCustomBrowser.sln
│ │ │ └── MakeCustomBrowser.suo
│ │ ├── 04
│ │ │ └── P2PChat
│ │ │ ├── P2PChat
│ │ │ │ ├── frmMain.cs
│ │ │ │ ├── frmMain.Designer.cs
│ │ │ │ ├── frmMain.resx
│ │ │ │ ├── P2PChat.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── P2PChat.sln
│ │ │ └── P2PChat.suo
│ │ ├── 04_diy
│ │ │ └── UDPChat
│ │ │ ├── UDPChat
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UDPChat.csproj
│ │ │ ├── UDPChat.sln
│ │ │ ├── UDPChat.suo
│ │ │ └── UDPServer
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── UDPServer.csproj
│ │ ├── 05
│ │ │ └── EmailSendAndReceive
│ │ │ ├── EmailSendAndReceive
│ │ │ │ ├── EmailSendAndReceive.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── frmReceive.cs
│ │ │ │ ├── frmReceive.designer.cs
│ │ │ │ ├── frmReceive.resx
│ │ │ │ ├── frmSend.cs
│ │ │ │ ├── frmSend.designer.cs
│ │ │ │ ├── frmSend.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── EmailSendAndReceive.sln
│ │ │ └── EmailSendAndReceive.suo
│ │ └── 05_diy
│ │ └── OutLookMail
│ │ ├── OutLookMail
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── OutLookMail.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── OutLookMail.sln
│ │ └── OutLookMail.suo
│ ├── sl
│ │ ├── 18.01
│ │ │ └── UseDns
│ │ │ ├── UseDns
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseDns.csproj
│ │ │ ├── UseDns.sln
│ │ │ └── UseDns.suo
│ │ ├── 18.02
│ │ │ └── UseIPAddress
│ │ │ ├── UseIPAddress
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseIPAddress.csproj
│ │ │ ├── UseIPAddress.sln
│ │ │ └── UseIPAddress.suo
│ │ ├── 18.03
│ │ │ └── UseIPEndPoint
│ │ │ ├── UseIPEndPoint
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseIPEndPoint.csproj
│ │ │ ├── UseIPEndPoint.sln
│ │ │ └── UseIPEndPoint.suo
│ │ ├── 18.04
│ │ │ └── UseWebClient
│ │ │ ├── UseWebClient
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseWebClient.csproj
│ │ │ ├── UseWebClient.sln
│ │ │ └── UseWebClient.suo
│ │ ├── 18.05
│ │ │ └── UseWebResponseAndQuest
│ │ │ ├── UseWebResponseAndQuest
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseWebResponseAndQuest.csproj
│ │ │ ├── UseWebResponseAndQuest.sln
│ │ │ └── UseWebResponseAndQuest.suo
│ │ ├── 18.06
│ │ │ └── UseSocket
│ │ │ ├── UseSocket
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseSocket.csproj
│ │ │ ├── UseSocket.sln
│ │ │ └── UseSocket.suo
│ │ ├── 18.07
│ │ │ └── UseTCP
│ │ │ ├── UseTCP
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseTCP.csproj
│ │ │ ├── UseTCP.sln
│ │ │ └── UseTCP.suo
│ │ ├── 18.08
│ │ │ └── UseUDP
│ │ │ ├── UseUDP
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseUDP.csproj
│ │ │ ├── UseUDP.sln
│ │ │ └── UseUDP.suo
│ │ ├── 18.09
│ │ │ └── 18.09.txt
│ │ ├── 18.10
│ │ │ └── 18.10.txt
│ │ └── 18.11
│ │ └── 18.11.txt
│ └── zmhh
│ ├── 01
│ │ └── GetCompuNameByIP
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetCompuNameByIP.csproj
│ │ ├── GetCompuNameByIP.sln
│ │ ├── GetCompuNameByIP.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 01_zmhh
│ │ └── GetCompuNameByIP
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetCompuNameByIP.csproj
│ │ ├── GetCompuNameByIP.sln
│ │ ├── GetCompuNameByIP.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 02
│ │ └── GetMAC
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetMAC.csproj
│ │ ├── GetMAC.sln
│ │ ├── GetMAC.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 02_zmhh
│ │ └── GetVideoInfo
│ │ ├── GetVideoInfo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetVideoInfo.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── GetVideoInfo.sln
│ │ └── GetVideoInfo.suo
│ ├── 03
│ │ └── GetWorkGroups
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetWorkGroup.csproj
│ │ ├── GetWorkGroup.sln
│ │ ├── GetWorkGroup.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 03_zmhh
│ │ └── GetAllComputers
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetAllComputers.csproj
│ │ ├── GetAllComputers.sln
│ │ ├── GetAllComputers.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 04
│ │ └── GetDiskInfo
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetDiskInfo.csproj
│ │ ├── GetDiskInfo.sln
│ │ ├── GetDiskInfo.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 04_zmhh
│ │ └── GetDiskInfo
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── GetDiskInfo.csproj
│ │ ├── GetDiskInfo.sln
│ │ ├── GetDiskInfo.suo
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 05
│ │ └── CreatePing
│ │ ├── CreatePing.csproj
│ │ ├── CreatePing.sln
│ │ ├── CreatePing.suo
│ │ ├── Form1.cs
│ │ ├── Form1.designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── 05_zmhh
│ └── PingIP
│ ├── PingIP
│ │ ├── PingIP.csproj
│ │ ├── Program.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── PingIP.sln
│ └── PingIP.suo
├── 19
│ ├── qjyy
│ │ ├── 01
│ │ │ └── ScanIP
│ │ │ ├── ScanIP
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── ip.ico
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ScanIP.csproj
│ │ │ ├── ScanIP.sln
│ │ │ └── ScanIP.suo
│ │ ├── 01_diy
│ │ │ └── FileCopyMove
│ │ │ ├── FileCopyMove
│ │ │ │ ├── FileCopyMove.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── FileCopyMove.sln
│ │ │ └── FileCopyMove.suo
│ │ ├── 02
│ │ │ └── ChuffedFarm
│ │ │ ├── ChuffedFarm
│ │ │ │ ├── ChuffedFarm.csproj
│ │ │ │ ├── CPictureBox.cs
│ │ │ │ ├── CPictureBox.Designer.cs
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── images
│ │ │ │ │ ├── bloom.png
│ │ │ │ │ ├── fruit.png
│ │ │ │ │ ├── grow.png
│ │ │ │ │ ├── plowland.jpg
│ │ │ │ │ ├── seed2.png
│ │ │ │ │ ├── seed.png
│ │ │ │ │ ├── 开花1.png
│ │ │ │ │ ├── 开花.png
│ │ │ │ │ ├── 播种1.png
│ │ │ │ │ ├── 播种.png
│ │ │ │ │ ├── 收获1.png
│ │ │ │ │ ├── 收获.png
│ │ │ │ │ ├── 生长1.png
│ │ │ │ │ ├── 生长.png
│ │ │ │ │ ├── 结果1.png
│ │ │ │ │ └── 结果.png
│ │ │ │ ├── PlantState.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChuffedFarm.sln
│ │ │ └── ChuffedFarm.suo
│ │ ├── 02_diy
│ │ │ └── ImageLeftToRight
│ │ │ ├── ImageLeftToRight
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── ImageLeftToRight.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ImageLeftToRight.sln
│ │ │ └── ImageLeftToRight.suo
│ │ ├── 03
│ │ │ └── AsynchronismFile
│ │ │ ├── AsynchronismFile
│ │ │ │ ├── AsynchronismFile.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Frm_Plan.cs
│ │ │ │ ├── Frm_Plan.Designer.cs
│ │ │ │ ├── Frm_Plan.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AsynchronismFile.sln
│ │ │ └── AsynchronismFile.suo
│ │ ├── 03_diy
│ │ │ └── AsynchronismLoadPlayVoice
│ │ │ ├── AsynchronismLoadPlayVoice
│ │ │ │ ├── AsynchronismLoadPlayVoice.cs
│ │ │ │ ├── AsynchronismLoadPlayVoice.csproj
│ │ │ │ ├── AsynchronismLoadPlayVoice.Designer.cs
│ │ │ │ ├── AsynchronismLoadPlayVoice.resx
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── AsynchronismLoadPlayVoice.sln
│ │ │ └── AsynchronismLoadPlayVoice.suo
│ │ ├── 04
│ │ │ └── ShowImageByForm
│ │ │ ├── ShowImageByForm
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ShowImageByForm.csproj
│ │ │ ├── ShowImageByForm.sln
│ │ │ └── ShowImageByForm.suo
│ │ ├── 04_diy
│ │ │ └── GetTime
│ │ │ ├── GetTime
│ │ │ │ ├── Frm_Main.cs
│ │ │ │ ├── Frm_Main.Designer.cs
│ │ │ │ ├── Frm_Main.resx
│ │ │ │ ├── GetTime.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── GetTime.sln
│ │ │ └── GetTime.suo
│ │ ├── 05
│ │ │ └── ScanPort
│ │ │ ├── ScanPort
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ScanPort.csproj
│ │ │ ├── ScanPort.sln
│ │ │ └── ScanPort.suo
│ │ └── 05_diy
│ │ └── DynamicStatus
│ │ ├── DynamicStatus
│ │ │ ├── DynamicStatus.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DynamicStatus.sln
│ │ └── DynamicStatus.suo
│ ├── sl
│ │ ├── 19.01
│ │ │ └── 19.01.txt
│ │ ├── 19.02
│ │ │ └── UseThread
│ │ │ ├── UseThread
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ ├── Resources.Designer.cs
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.cs
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── UseThread.csproj
│ │ │ ├── UseThread.sln
│ │ │ └── UseThread.suo
│ │ ├── 19.03
│ │ │ └── CreateThread
│ │ │ ├── CreateThread
│ │ │ │ ├── CreateThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── CreateThread.sln
│ │ │ └── CreateThread.suo
│ │ ├── 19.04
│ │ │ └── SRThread
│ │ │ ├── SRThread
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SRThread.csproj
│ │ │ ├── SRThread.sln
│ │ │ └── SRThread.suo
│ │ ├── 19.05
│ │ │ └── 19.05.txt
│ │ ├── 19.06
│ │ │ └── AbortThread
│ │ │ ├── AbortThread
│ │ │ │ ├── AbortThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── AbortThread.sln
│ │ │ └── AbortThread.suo
│ │ ├── 19.07
│ │ │ └── JoinThread
│ │ │ ├── JoinThread
│ │ │ │ ├── JoinThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── JoinThread.sln
│ │ │ └── JoinThread.suo
│ │ ├── 19.08
│ │ │ └── SetThreadPri
│ │ │ ├── SetThreadPri
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SetThreadPri.csproj
│ │ │ ├── SetThreadPri.sln
│ │ │ └── SetThreadPri.suo
│ │ ├── 19.09
│ │ │ └── 19.09.txt
│ │ ├── 19.10
│ │ │ └── MonitorThread
│ │ │ ├── MonitorThread
│ │ │ │ ├── MonitorThread.csproj
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── MonitorThread.sln
│ │ │ └── MonitorThread.suo
│ │ └── 19.11
│ │ └── MutexThread
│ │ ├── MutexThread
│ │ │ ├── MutexThread.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── MutexThread.sln
│ │ └── MutexThread.suo
│ └── zmhh
│ ├── 01
│ │ └── JudgeRunState
│ │ ├── JudgeRunState
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── JudgeRunState.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── JudgeRunState.sln
│ │ └── JudgeRunState.suo
│ ├── 01_zmhh
│ │ └── JudgeRunState
│ │ ├── JudgeRunState
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── JudgeRunState.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── JudgeRunState.sln
│ │ └── JudgeRunState.suo
│ ├── 02
│ │ └── RansackFile
│ │ ├── RansackFile
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── RansackFile.csproj
│ │ ├── RansackFile.sln
│ │ └── RansackFile.suo
│ ├── 02_zmhh
│ │ └── DeleteFiles
│ │ ├── DeleteDirByDG
│ │ │ ├── DeleteDirByDG.csproj
│ │ │ ├── Frm_Main.cs
│ │ │ ├── Frm_Main.designer.cs
│ │ │ ├── Frm_Main.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DeleteDirByDG.sln
│ │ └── DeleteDirByDG.suo
│ ├── 03
│ │ └── Shutter
│ │ ├── Shutter
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── Shutter.csproj
│ │ ├── Shutter.sln
│ │ └── Shutter.suo
│ ├── 03_zmhh
│ │ └── ShowImageByResolution
│ │ ├── ShowImageByResolution
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ShowImageByResolution.csproj
│ │ │ └── ShowImageByResolution.csproj.user
│ │ ├── ShowImageByResolution.sln
│ │ └── ShowImageByResolution.suo
│ ├── 04
│ │ └── AccessConnect
│ │ ├── AccessConnect
│ │ │ ├── AccessConnect.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AccessConnect.sln
│ │ └── AccessConnect.suo
│ ├── 04_zmhh
│ │ └── DelData
│ │ ├── AccessConnect
│ │ │ ├── AccessConnect.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── AccessConnect.sln
│ │ └── AccessConnect.suo
│ ├── 05
│ │ └── BigAccount
│ │ ├── BigAccount
│ │ │ ├── BigAccount.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BigAccount.sln
│ │ └── BigAccount.suo
│ └── 05_zmhh
│ └── BigAccount
│ ├── BigAccount
│ │ ├── BigAccount.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── BigAccount.sln
│ └── BigAccount.suo
├── 20
│ └── sl
│ ├── 20.01
│ │ └── UseThrow
│ │ ├── UseThrow
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseThrow.csproj
│ │ ├── UseThrow.sln
│ │ └── UseThrow.suo
│ ├── 20.02
│ │ └── UseTrycatch
│ │ ├── UseTrycatch
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── UseTrycatch.csproj
│ │ ├── UseTrycatch.sln
│ │ └── UseTrycatch.suo
│ └── 20.03
│ └── UseFinally
│ ├── UseFinally
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── UseFinally.csproj
│ ├── UseFinally.sln
│ └── UseFinally.suo
├── 21
├── 22
│ ├── PWMS
│ │ ├── PWMS
│ │ │ ├── Database
│ │ │ │ ├── db_PWMS_log.ldf
│ │ │ │ └── db_PWMS.mdf
│ │ │ ├── DataClass
│ │ │ │ └── MyMeans.cs
│ │ │ ├── F_Login.cs
│ │ │ ├── F_Login.designer.cs
│ │ │ ├── F_Login.resx
│ │ │ ├── F_Main.cs
│ │ │ ├── F_Main.designer.cs
│ │ │ ├── F_Main.resx
│ │ │ ├── Image
│ │ │ │ ├── 01.png
│ │ │ │ ├── 02.png
│ │ │ │ ├── 03.png
│ │ │ │ ├── 04.png
│ │ │ │ ├── 05.png
│ │ │ │ ├── 06.png
│ │ │ │ ├── 07.png
│ │ │ │ ├── 08.png
│ │ │ │ ├── 09.png
│ │ │ │ ├── PEOPLE.jpg
│ │ │ │ ├── 主界面.bmp
│ │ │ │ ├── 备份.bmp
│ │ │ │ └── 登录.bmp
│ │ │ ├── InfoAddForm
│ │ │ │ ├── F_Address.cs
│ │ │ │ ├── F_Address.designer.cs
│ │ │ │ ├── F_Address.resx
│ │ │ │ ├── F_Basic.cs
│ │ │ │ ├── F_Basic.designer.cs
│ │ │ │ ├── F_Basic.resx
│ │ │ │ ├── F_ClewSet.cs
│ │ │ │ ├── F_ClewSet.designer.cs
│ │ │ │ └── F_ClewSet.resx
│ │ │ ├── ModuleClass
│ │ │ │ └── MyModule.cs
│ │ │ ├── PerForm
│ │ │ │ ├── F_AddressList.cs
│ │ │ │ ├── F_AddressList.designer.cs
│ │ │ │ ├── F_AddressList.resx
│ │ │ │ ├── F_ClearData.cs
│ │ │ │ ├── F_ClearData.designer.cs
│ │ │ │ ├── F_ClearData.resx
│ │ │ │ ├── F_Find.cs
│ │ │ │ ├── F_Find.designer.cs
│ │ │ │ ├── F_Find.resx
│ │ │ │ ├── F_HaveBack.cs
│ │ │ │ ├── F_HaveBack.designer.cs
│ │ │ │ ├── F_HaveBack.resx
│ │ │ │ ├── F_ManFile.cs
│ │ │ │ ├── F_ManFile.designer.cs
│ │ │ │ ├── F_ManFile.resx
│ │ │ │ ├── F_Stat.cs
│ │ │ │ ├── F_Stat.designer.cs
│ │ │ │ ├── F_Stat.resx
│ │ │ │ ├── F_UserAdd.cs
│ │ │ │ ├── F_UserAdd.designer.cs
│ │ │ │ ├── F_UserAdd.resx
│ │ │ │ ├── F_User.cs
│ │ │ │ ├── F_User.designer.cs
│ │ │ │ ├── F_UserPope.cs
│ │ │ │ ├── F_UserPope.designer.cs
│ │ │ │ ├── F_UserPope.resx
│ │ │ │ ├── F_User.resx
│ │ │ │ ├── F_WordPad.cs
│ │ │ │ ├── F_WordPad.designer.cs
│ │ │ │ └── F_WordPad.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── PWMS.csproj
│ │ ├── PWMSSetup
│ │ │ ├── Debug
│ │ │ │ ├── PWMSSetup.msi
│ │ │ │ └── setup.exe
│ │ │ ├── PWMSSetup.vdproj
│ │ │ └── Release
│ │ ├── PWMS.sln
│ │ └── PWMS.suo
│ └── 程序使用说明书.doc
├── 23
│ ├── houseAgency
│ │ ├── houseAgency
│ │ │ ├── BusinessM
│ │ │ │ ├── frmBargin.cs
│ │ │ │ ├── frmBargin.designer.cs
│ │ │ │ └── frmBargin.resx
│ │ │ ├── Database
│ │ │ │ ├── db_showHouse_Data.MDF
│ │ │ │ ├── db_showHouse_Log.LDF
│ │ │ │ └── 杀死进程的存储过程.sql
│ │ │ ├── frmMain.cs
│ │ │ ├── frmMain.designer.cs
│ │ │ ├── frmMain.resx
│ │ │ ├── frmUserLogin.cs
│ │ │ ├── frmUserLogin.designer.cs
│ │ │ ├── frmUserLogin.resx
│ │ │ ├── houseAgency.csproj
│ │ │ ├── Image
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── dl.jpg
│ │ │ │ ├── 修改.bmp
│ │ │ │ ├── 出租人员信息.png
│ │ │ │ ├── 删除.bmp
│ │ │ │ ├── 增加.bmp
│ │ │ │ ├── 成交量.png
│ │ │ │ ├── 房源查询.png
│ │ │ │ ├── 操作.bmp
│ │ │ │ ├── 收费记录.png
│ │ │ │ ├── 查询.bmp
│ │ │ │ └── 求租人信息.png
│ │ │ ├── mothedCls
│ │ │ │ ├── claFavorMethod.cs
│ │ │ │ ├── ClsCon.cs
│ │ │ │ ├── clsEmpleey.cs
│ │ │ │ ├── clsEmpleeyMethed.cs
│ │ │ │ ├── clsFavor.cs
│ │ │ │ ├── clsFitment.cs
│ │ │ │ ├── clsFitmentMethod.cs
│ │ │ │ ├── clsFloor.cs
│ │ │ │ ├── clsFloorMethod.cs
│ │ │ │ ├── clsgov.cs
│ │ │ │ ├── clsgovMethod.cs
│ │ │ │ ├── ClsHouse.cs
│ │ │ │ ├── ClsHouseMethed.cs
│ │ │ │ ├── clsIntend.cs
│ │ │ │ ├── clsIntendMethed.cs
│ │ │ │ ├── clsLogin.cs
│ │ │ │ ├── clsLoginMethed.cs
│ │ │ │ ├── clsMethed.cs
│ │ │ │ ├── clsMethedMethod.cs
│ │ │ │ ├── clsMoneyAndInfo.cs
│ │ │ │ ├── clsMoneyAndInfoMethod.cs
│ │ │ │ ├── clsSeat.cs
│ │ │ │ ├── clsSeatMethod.cs
│ │ │ │ ├── clsStudyDegree.cs
│ │ │ │ ├── clsStudyDegreeMethod.cs
│ │ │ │ ├── clstype.cs
│ │ │ │ ├── clstypeMethod.cs
│ │ │ │ ├── clsUser.cs
│ │ │ │ └── clsUserMethod.cs
│ │ │ ├── OutTenants
│ │ │ │ ├── frmFavor.cs
│ │ │ │ ├── frmFavor.designer.cs
│ │ │ │ ├── frmFavor.resx
│ │ │ │ ├── frmFitment.cs
│ │ │ │ ├── frmFitment.designer.cs
│ │ │ │ ├── frmFitment.resx
│ │ │ │ ├── frmFloor.cs
│ │ │ │ ├── frmFloor.designer.cs
│ │ │ │ ├── frmFloor.resx
│ │ │ │ ├── frmMothed.cs
│ │ │ │ ├── frmMothed.designer.cs
│ │ │ │ ├── frmMothed.resx
│ │ │ │ ├── frmSeat.cs
│ │ │ │ ├── frmSeat.designer.cs
│ │ │ │ ├── frmSeat.resx
│ │ │ │ ├── frmType.cs
│ │ │ │ ├── frmType.designer.cs
│ │ │ │ └── frmType.resx
│ │ │ ├── PayingM
│ │ │ │ ├── frmBackMoney.cs
│ │ │ │ ├── frmBackMoney.designer.cs
│ │ │ │ ├── frmBackMoney.resx
│ │ │ │ ├── frmMoney.cs
│ │ │ │ ├── frmMoney.designer.cs
│ │ │ │ └── frmMoney.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── SeekTenantsM
│ │ │ │ ├── frmHouse.cs
│ │ │ │ ├── frmHouse.designer.cs
│ │ │ │ ├── frmHouse.resx
│ │ │ │ ├── frmIntend.cs
│ │ │ │ ├── frmIntend.designer.cs
│ │ │ │ ├── frmIntendInfo.cs
│ │ │ │ ├── frmIntendInfo.designer.cs
│ │ │ │ ├── frmIntendInfo.resx
│ │ │ │ ├── frmIntend.resx
│ │ │ │ ├── frmOk.cs
│ │ │ │ ├── frmOk.designer.cs
│ │ │ │ ├── frmOk.resx
│ │ │ │ ├── frmSelect.cs
│ │ │ │ ├── frmSelect.designer.cs
│ │ │ │ ├── frmSelect.resx
│ │ │ │ ├── frmStateHouse.cs
│ │ │ │ ├── frmStateHouse.designer.cs
│ │ │ │ └── frmStateHouse.resx
│ │ │ ├── StaffInfor
│ │ │ │ ├── frmEmpleeyAll.cs
│ │ │ │ ├── frmEmpleeyAll.designer.cs
│ │ │ │ ├── frmEmpleeyAll.resx
│ │ │ │ ├── frmEmploeey.cs
│ │ │ │ ├── frmEmploeey.designer.cs
│ │ │ │ ├── frmEmploeey.resx
│ │ │ │ ├── frmGov.cs
│ │ │ │ ├── frmGov.designer.cs
│ │ │ │ ├── frmGov.resx
│ │ │ │ ├── frmStudyDegree.cs
│ │ │ │ ├── frmStudyDegree.designer.cs
│ │ │ │ └── frmStudyDegree.resx
│ │ │ ├── SystemM
│ │ │ │ ├── frmChangYouSelfPwd.cs
│ │ │ │ ├── frmChangYouSelfPwd.designer.cs
│ │ │ │ ├── frmChangYouSelfPwd.resx
│ │ │ │ ├── frmRestore.cs
│ │ │ │ ├── frmRestore.designer.cs
│ │ │ │ ├── frmRestore.resx
│ │ │ │ ├── frmStock.cs
│ │ │ │ ├── frmStock.designer.cs
│ │ │ │ └── frmStock.resx
│ │ │ └── UserInfor
│ │ │ ├── frmPeopleInfo.cs
│ │ │ ├── frmPeopleInfo.designer.cs
│ │ │ ├── frmPeopleInfo.resx
│ │ │ ├── frmPeopleList.cs
│ │ │ ├── frmPeopleList.designer.cs
│ │ │ └── frmPeopleList.resx
│ │ ├── houseAgency.sln
│ │ └── houseAgency.suo
│ └── 程序使用说明书.doc
├── 24
│ ├── EMS
│ │ ├── EMS
│ │ │ ├── BaseClass
│ │ │ │ ├── BaseInfo.cs
│ │ │ │ └── DataBase.cs
│ │ │ ├── BaseInfo
│ │ │ │ ├── frmEmployee.cs
│ │ │ │ ├── frmEmployee.designer.cs
│ │ │ │ ├── frmEmployee.resx
│ │ │ │ ├── frmStock.cs
│ │ │ │ ├── frmStock.designer.cs
│ │ │ │ ├── frmStock.resx
│ │ │ │ ├── frmUnits.cs
│ │ │ │ ├── frmUnits.designer.cs
│ │ │ │ └── frmUnits.resx
│ │ │ ├── BuyStock
│ │ │ │ ├── frmBuyStockAnalyse.cs
│ │ │ │ ├── frmBuyStockAnalyse.designer.cs
│ │ │ │ ├── frmBuyStockAnalyse.resx
│ │ │ │ ├── frmBuyStock.cs
│ │ │ │ ├── frmBuyStock.designer.cs
│ │ │ │ ├── frmBuyStock.resx
│ │ │ │ ├── frmBuyStockSum.cs
│ │ │ │ ├── frmBuyStockSum.designer.cs
│ │ │ │ ├── frmBuyStockSum.resx
│ │ │ │ ├── frmCurrentAccountBook.cs
│ │ │ │ ├── frmCurrentAccountBook.designer.cs
│ │ │ │ ├── frmCurrentAccountBook.resx
│ │ │ │ ├── frmRebuyStock.cs
│ │ │ │ ├── frmRebuyStock.designer.cs
│ │ │ │ ├── frmRebuyStock.resx
│ │ │ │ ├── frmUnitsList.cs
│ │ │ │ ├── frmUnitsList.designer.cs
│ │ │ │ └── frmUnitsList.resx
│ │ │ ├── Database
│ │ │ │ ├── db_EMS_log.ldf
│ │ │ │ └── db_EMS.mdf
│ │ │ ├── EMS.csproj
│ │ │ ├── frmLogin.cs
│ │ │ ├── frmLogin.designer.cs
│ │ │ ├── frmLogin.resx
│ │ │ ├── frmMain.cs
│ │ │ ├── frmMain.designer.cs
│ │ │ ├── frmMain.resx
│ │ │ ├── icon
│ │ │ │ ├── 001.ico
│ │ │ │ ├── 07.ico
│ │ │ │ ├── 162.ico
│ │ │ │ ├── 170.ico
│ │ │ │ ├── 171.ico
│ │ │ │ ├── 172.ico
│ │ │ │ ├── 23.ico
│ │ │ │ ├── 3.ico
│ │ │ │ ├── 42.ico
│ │ │ │ ├── 44.ico
│ │ │ │ ├── 45.ico
│ │ │ │ ├── 87.ico
│ │ │ │ ├── add.ico
│ │ │ │ ├── backup.ico
│ │ │ │ ├── cancle.ico
│ │ │ │ ├── check.ico
│ │ │ │ ├── close.bmp
│ │ │ │ ├── Close.ico
│ │ │ │ ├── delete.ico
│ │ │ │ ├── detailed.ico
│ │ │ │ ├── edit.ico
│ │ │ │ ├── exit.ico
│ │ │ │ ├── find.ico
│ │ │ │ ├── help.bmp
│ │ │ │ ├── help.ico
│ │ │ │ ├── h.ico
│ │ │ │ ├── internet.bmp
│ │ │ │ ├── internet.ico
│ │ │ │ ├── main.ico
│ │ │ │ ├── print.ico
│ │ │ │ ├── question.ico
│ │ │ │ ├── save.ico
│ │ │ │ ├── search.ico
│ │ │ │ ├── s.ico
│ │ │ │ └── z.ico
│ │ │ ├── Image
│ │ │ │ ├── 企业进销存主窗体.jpg
│ │ │ │ └── 企业进销存登录窗体.jpg
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ ├── SaleStock
│ │ │ │ ├── frmResellStock.cs
│ │ │ │ ├── frmResellStock.designer.cs
│ │ │ │ ├── frmResellStock.resx
│ │ │ │ ├── frmSellStockCost.cs
│ │ │ │ ├── frmSellStockCost.designer.cs
│ │ │ │ ├── frmSellStockCost.resx
│ │ │ │ ├── frmSellStock.cs
│ │ │ │ ├── frmSellStockDesc.cs
│ │ │ │ ├── frmSellStockDesc.designer.cs
│ │ │ │ ├── frmSellStockDesc.resx
│ │ │ │ ├── frmSellStock.designer.cs
│ │ │ │ ├── frmSellStockDetailed.cs
│ │ │ │ ├── frmSellStockDetailed.designer.cs
│ │ │ │ ├── frmSellStockDetailed.resx
│ │ │ │ ├── frmSellStock.resx
│ │ │ │ ├── frmSellStockStatus.cs
│ │ │ │ ├── frmSellStockStatus.designer.cs
│ │ │ │ ├── frmSellStockStatus.resx
│ │ │ │ ├── frmSellStockSum.cs
│ │ │ │ ├── frmSellStockSum.designer.cs
│ │ │ │ └── frmSellStockSum.resx
│ │ │ ├── SelectDataDialog
│ │ │ │ ├── frmSelectDateTime.cs
│ │ │ │ ├── frmSelectDateTime.designer.cs
│ │ │ │ ├── frmSelectDateTime.resx
│ │ │ │ ├── frmSelectHandle.cs
│ │ │ │ ├── frmSelectHandle.designer.cs
│ │ │ │ ├── frmSelectHandle.resx
│ │ │ │ ├── frmSelectOrderby.cs
│ │ │ │ ├── frmSelectOrderby.designer.cs
│ │ │ │ ├── frmSelectOrderby.resx
│ │ │ │ ├── frmSelectStock.cs
│ │ │ │ ├── frmSelectStock.designer.cs
│ │ │ │ ├── frmSelectStock.resx
│ │ │ │ ├── frmSelectUnits.cs
│ │ │ │ ├── frmSelectUnits.designer.cs
│ │ │ │ ├── frmSelectUnits.resx
│ │ │ │ ├── frmSetStockLimit.cs
│ │ │ │ ├── frmSetStockLimit.designer.cs
│ │ │ │ └── frmSetStockLimit.resx
│ │ │ ├── SetSystem
│ │ │ │ ├── frmBakup.cs
│ │ │ │ ├── frmBakup.designer.cs
│ │ │ │ ├── frmBakup.resx
│ │ │ │ ├── frmClearTable.cs
│ │ │ │ ├── frmClearTable.designer.cs
│ │ │ │ ├── frmClearTable.resx
│ │ │ │ ├── frmSetOP.cs
│ │ │ │ ├── frmSetOP.designer.cs
│ │ │ │ ├── frmSetOP.resx
│ │ │ │ ├── frmUnits.cs
│ │ │ │ ├── frmUnits.designer.cs
│ │ │ │ └── frmUnits.resx
│ │ │ └── Stock
│ │ │ ├── frmCheckStock.cs
│ │ │ ├── frmCheckStock.designer.cs
│ │ │ ├── frmCheckStock.resx
│ │ │ ├── frmLowerLimit.cs
│ │ │ ├── frmLowerLimit.designer.cs
│ │ │ ├── frmLowerLimit.resx
│ │ │ ├── frmStockStatus.cs
│ │ │ ├── frmStockStatus.designer.cs
│ │ │ ├── frmStockStatus.resx
│ │ │ ├── frmUpperLimit.cs
│ │ │ ├── frmUpperLimit.designer.cs
│ │ │ └── frmUpperLimit.resx
│ │ ├── EMS.sln
│ │ └── EMS.suo
│ └── 程序使用说明书.doc
├── Database
│ ├── db_CSharp_log.ldf
│ └── db_CSharp.mdf
└── 光盘使用说明.doc
2663 directories, 7198 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论