在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → c# winform基础

c# winform基础

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:12.25M
  • 下载次数:29
  • 浏览次数:140
  • 发布时间:2023-12-24
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: c# winform winform FORM ORM win

实例介绍

【实例简介】c# winform基础
刚进公司的时候 没学过winform 后来对着代码敲 慢慢就入门了 这些代码对刚学习winform的你 希望有些帮助

【实例截图】

from clipboard

【核心代码】

.
├── C# Winform
│   ├── 10MDI窗体和继承窗体
│   │   └── MDI窗体和继承窗体
│   │       ├── InheritFormByDesign
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── InheritFormByDesign.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── InheritFromByCode
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── InheritFromByCode.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MDIHorizontalSort
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Frm_ChildOne.Designer.cs
│   │       │   ├── Frm_ChildOne.cs
│   │       │   ├── Frm_ChildThree.Designer.cs
│   │       │   ├── Frm_ChildThree.cs
│   │       │   ├── Frm_ChildTwo.Designer.cs
│   │       │   ├── Frm_ChildTwo.cs
│   │       │   ├── MDIHorizontalSort.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MDI窗体和继承窗体.sln
│   │       ├── MDI窗体和继承窗体.suo
│   │       ├── MaxChildForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Frm_Child.Designer.cs
│   │       │   ├── Frm_Child.cs
│   │       │   ├── Frm_Child.resx
│   │       │   ├── MaxChildForm.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       └── SetMDIForm
│   │           ├── Form1.Designer.cs
│   │           ├── Form1.cs
│   │           ├── Form1.resx
│   │           ├── Frm_Child.Designer.cs
│   │           ├── Frm_Child.cs
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── SetMDIForm.csproj
│   │           ├── bin
│   │           └── obj
│   ├── 11windows常用控件的使用
│   │   └── Solution1
│   │       ├── AddHyperLink
│   │       │   ├── AddHyperLink.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddScore
│   │       │   ├── AddScore.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddTabPage
│   │       │   ├── AddTabPage.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddToListBox
│   │       │   ├── AddToListBox.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AutoButton
│   │       │   ├── AutoButton.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BindingXML
│   │       │   ├── BindingXML.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BoldItem
│   │       │   ├── BoldItem.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ButtonMagnifier
│   │       │   ├── ButtonMagnifier.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CartoonForm
│   │       │   ├── CartoonForm.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CheckBoxInStatusBar
│   │       │   ├── CheckBoxInStatusBar.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ComboboxFind
│   │       │   ├── ComboboxFind.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CreateMenu
│   │       │   ├── CreateMenu.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DataSort
│   │       │   ├── DataSort.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DisPlayUser
│   │       │   ├── DisPlayUser.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DisableMenuItem
│   │       │   ├── DisableMenuItem.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DisplayRTFFile
│   │       │   ├── DisplayRTFFile.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DriftTool
│   │       │   ├── DriftTool.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DropDownMenu
│   │       │   ├── DropDownMenu.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DynamicButtonForm
│   │       │   ├── DynamicButtonForm.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DynamicStatus
│   │       │   ├── DynamicStatus.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FindThis
│   │       │   ├── FindThis.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GenerateButton
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GenerateButton.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetDirectory
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetDirectory.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetSelectTabPage
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetSelectTabPage.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetTime
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetTime.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── HideToolBar
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── HideToolBar.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── HistoryMenu
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── HistoryMenu.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── InsertImage
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── InsertImage.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── LeadWindow
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── LeadWindow.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ListBoxItem
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── ListBoxItem.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MenuVestige
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── MenuVestige.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MessageTool
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── MessageTool.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ModificationTxt
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── ModificationTxt.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MoveFontInForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── MoveFontInForm.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Muti-LineText
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Muti-LineText.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OfficeAgent
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OfficeAgent.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OnlyDigit
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OnlyDigit.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── PictureInTool
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── PictureInTool.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── PictureInTreeView
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── PictureInTreeView.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── PicturesInComobox
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── PicturesInComobox.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ProgressStatus
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── ProgressStatus.csproj
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── RemoveTabPage
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RemoveTabPage.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReplaceText
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReplaceText.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ResembleBrowser
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ResembleBrowser.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SaveFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SaveFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SelectAll
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SelectAll.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SelectFlash
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SelectFlash.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SelectInsert
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SelectInsert.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ShieldMenu
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ShieldMenu.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ShieldPaste
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ShieldPaste.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ShortCutInMenu
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ShortCutInMenu.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Solution1.sln
│   │       ├── Solution1.suo
│   │       ├── StartForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── StartForm.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── StrechMenu
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── StrechMenu.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TCtrl
│   │       ├── TCtrlStyle
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TCtrlStyle.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Tctrlstyletwo
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── Tctrlstyletwo.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TextAlignment
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TextAlignment.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TreeForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TreeForm.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Txt_Password
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── Txt_Password.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── UnderLine
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── UnderLine.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── WindowsFormsApplication1
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── WindowsFormsApplication1.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── exchangeItem
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── exchangeItem.csproj
│   │       │   └── obj
│   │       ├── findKey
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── findKey.csproj
│   │       │   └── obj
│   │       ├── getNotifyIcon
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── getNotifyIcon.csproj
│   │       │   └── obj
│   │       └── txtNewLine
│   │           ├── Form1.Designer.cs
│   │           ├── Form1.cs
│   │           ├── Form1.resx
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── bin
│   │           ├── obj
│   │           └── txtNewLine.csproj
│   ├── 12windows高级组建的使用
│   │   └── 12章windows高级组建使用
│   │       ├── 12章windows高级组建使用.sln
│   │       ├── 12章windows高级组建使用.suo
│   │       ├── AddAndRemoveControl
│   │       │   ├── AddAndRemoveControl.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Frm_Login.Designer.cs
│   │       │   ├── Frm_Login.cs
│   │       │   ├── Frm_Login.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddLog
│   │       │   ├── AddLog.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Calculagraph
│   │       │   ├── Calculagraph.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ChangeFocus
│   │       │   ├── ChangeFocus.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DisplayTime
│   │       │   ├── DisplayTime.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DragControl
│   │       │   ├── DragControl.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FileMonitor
│   │       │   ├── FileMonitor.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetAnimation
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetAnimation.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetColor
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetColor.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetProcess
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetProcess.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetResult
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetResult.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetService
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetService.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetTag
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetTag.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── InputTest
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── InputTest.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── InvokeHelp
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── InvokeHelp.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MoveForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── MoveForm.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OnlyPictures
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OnlyPictures.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OpenFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OpenFile.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OpenMuti
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OpenMuti.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ProgressBar
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── ProgressBar.csproj
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SaveFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SaveFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SaveLog
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SaveLog.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SaveToFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SaveToFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SelectFolder
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SelectFolder.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetColor
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetColor.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetEventLog
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetEventLog.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetFont
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetFont.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ShortCutMenu
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ShortCutMenu.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TimeNow
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TimeNow.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TxtValidate
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TxtValidate.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── UseBackgroundWorker
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── UseBackgroundWorker.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       └── UserTime
│   │           ├── Form1.Designer.cs
│   │           ├── Form1.cs
│   │           ├── Form1.resx
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── UserTime.csproj
│   │           ├── bin
│   │           └── obj
│   ├── 13 datagrid控件基本设置
│   │   └── DataGridView控件基本设置
│   │       ├── CellAlignment
│   │       │   ├── CellAlignment.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CellNewLine
│   │       │   ├── CellNewLine.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ChangeColor
│   │       │   ├── ChangeColor.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CheckBoxInDataGridView
│   │       │   ├── CheckBoxInDataGridView.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DataFormat
│   │       │   ├── DataFormat.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DataGridView控件基本设置.sln
│   │       ├── DataGridView控件基本设置.suo
│   │       ├── DisplayPictures
│   │       │   ├── DisplayPictures.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DropDownList
│   │       │   ├── DropDownList.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetGridData
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetGridData.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GridStyle
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GridStyle.csproj
│   │       │   ├── Model1.Designer.cs
│   │       │   ├── Model1.edmx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GridToView
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GridToView.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── NoAddAndRemoveLine
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── NoAddAndRemoveLine.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── NoSort
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── NoSort.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SumAndAverage
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SumAndAverage.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       └── fontStyle
│   │           ├── ClassDiagram1.cd
│   │           ├── Form1.Designer.cs
│   │           ├── Form1.cs
│   │           ├── Form1.resx
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── bin
│   │           ├── fontStyle.csproj
│   │           └── obj
│   ├── 14重绘windows标准控件
│   │   └── 自定义用户控件
│   │       ├── BeautifulButton
│   │       │   ├── BeautifulButton.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TransparencyButton.Designer.cs
│   │       │   ├── TransparencyButton.cs
│   │       │   ├── TransparencyButton.resx
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BeautifulCalendar
│   │       │   ├── BeautifulCalendar.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── datetimecontrol.Designer.cs
│   │       │   ├── datetimecontrol.cs
│   │       │   ├── datetimecontrol.resx
│   │       │   └── obj
│   │       ├── BeautifulCombobox
│   │       │   ├── BeautifulCombobox.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BeautifulRadioButton
│   │       │   ├── BeautifulRadioButton.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GlorityRadioButton.Designer.cs
│   │       │   ├── GlorityRadioButton.cs
│   │       │   ├── GlorityRadioButton.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BeautifulTextBox
│   │       │   ├── BeautifulTextBox.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── UserControl1.Designer.cs
│   │       │   ├── UserControl1.cs
│   │       │   ├── UserControl1.resx
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ComplexControl
│   │       │   ├── ComplexControl.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── UserControl1.Designer.cs
│   │       │   ├── UserControl1.cs
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── 自定义用户控件.sln
│   │       └── 自定义用户控件.suo
│   ├── 15文件基本操作
│   │   └── 文件基本操作
│   │       ├── AllowDropFile
│   │       │   ├── AllowDropFile.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AmmendFileAttribute
│   │       │   ├── AmmendFileAttribute.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ClearRecyle
│   │       │   ├── ClearRecyle.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CreateAndRemoveFile
│   │       │   ├── CreateAndRemoveFile.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CreateFile
│   │       │   ├── CreateFile.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CreatePDFDocument
│   │       │   ├── CreatePDFDocument.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FileCommuniteUnite
│   │       │   ├── FileCommuniteUnite.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FileCopy
│   │       │   ├── FileCopy.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FileEqual
│   │       │   ├── FileEqual.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FileExt
│   │       │   ├── FileExt.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FilesExists
│   │       │   ├── FilesExists.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetFileBothDat
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetFileBothDat.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetFileLength
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetFileLength.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetShortPathName
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetShortPathName.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetWindowsText
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetWindowsText11.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── INIFileOperate
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── INIFileOperate.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── JudgeFileOpen
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── JudgeFileOpen.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ModifyTime
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── ModifyTime.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── NoChar
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── NoChar.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OperateXML
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OperateXML.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── XMLFile1.xml
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── RandomFileName
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RandomFileName.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── RanksackFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RanksackFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TempFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TempFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── destDirName
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── destDirName.csproj
│   │       │   └── obj
│   │       ├── searchfile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── obj
│   │       │   └── searchfile.csproj
│   │       ├── 文件基本操作.sln
│   │       └── 文件基本操作.suo
│   ├── 17文件流的操作
│   │   └── 文件流操作
│   │       ├── AddDataToFile
│   │       │   ├── AddDataToFile.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ConvertTextToWeb
│   │       │   ├── ConvertTextToWeb.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OperateBufferedStream
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OperateBufferedStream.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OperateMemroyStream
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OperateMemroyStream.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReadAllData
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReadAllData.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReadBinaryFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReadBinaryFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReadFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReadFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReadFileByLine
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReadFileByLine.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReadFirstLine
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReadFirstLine.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReadUTF8File
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReadUTF8File.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── WriteBinaryFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── WriteBinaryFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── WriteFile
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── WriteFile.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── WriteUTF8File
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── WriteUTF8File.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── 文件流操作.sln
│   │       └── 文件流操作.suo
│   ├── 18章 加密解密文件
│   │   └── Solution18
│   │       ├── ROT13Encrypt
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ROT13Encrypt.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Solution18
│   │       │   ├── About.aspx
│   │       │   ├── About.aspx.cs
│   │       │   ├── About.aspx.designer.cs
│   │       │   ├── Account
│   │       │   ├── App_Data
│   │       │   ├── Default.aspx
│   │       │   ├── Default.aspx.cs
│   │       │   ├── Default.aspx.designer.cs
│   │       │   ├── Global.asax
│   │       │   ├── Global.asax.cs
│   │       │   ├── Properties
│   │       │   ├── Scripts
│   │       │   ├── Site.Master
│   │       │   ├── Site.Master.cs
│   │       │   ├── Site.Master.designer.cs
│   │       │   ├── Solution18.csproj
│   │       │   ├── Solution18.csproj.user
│   │       │   ├── Styles
│   │       │   ├── Web.Debug.config
│   │       │   ├── Web.Release.config
│   │       │   ├── Web.config
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Solution18.sln
│   │       └── Solution18.suo
│   ├── 2字符串
│   │   └── 2
│   │       ├── 2.sln
│   │       ├── 2.suo
│   │       ├── ASCII
│   │       │   ├── ASCII.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddDate
│   │       │   ├── AddDate.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ChineseCode
│   │       │   ├── ChineseCode.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ChineseToABC
│   │       │   ├── ChineseToABC.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ConvertToString
│   │       │   ├── ConvertToString.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DaysInMonth
│   │       │   ├── DaysInMonth.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DisplayRunTime
│   │       │   ├── DisplayRunTime.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Format
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Format.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetAge
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetAge.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetDateDiff
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetDateDiff.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetDays
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetDays.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetTime
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetTime.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetYesterday
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetYesterday.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── IsChinese
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── IsChinese.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── IsLetter
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── IsLetter.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── LetterCount
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── LetterCount.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Lines
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Lines.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MobileValidate
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── MobileValidate.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── RemoveBlank
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RemoveBlank.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReplaceStr
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReplaceStr.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ReverseStr
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ReverseStr.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Round
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RoundProject.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── RoundProject
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RoundProject.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetValue
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetValue.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── TmrFormat
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TmrFormat.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ToUpperOrLower
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ToUpperOrLower.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Transform
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── Transform.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateCode
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateCode.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateDay
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateDay.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateDecimal
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateDecimal.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateIP
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateIP.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateInteger
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateInteger.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateIntegerExpect0
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateIntegerExpect0.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateLength
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateLength.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidatePassWord
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidatePassWord.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidatePerson
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidatePerson.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidatePhone
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidatePhone.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateSmall
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateSmall.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateSplit
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateSplit.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateUpper
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateUpper.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateUrl
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateUrl.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValidateWord
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValidateWord.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ValiteValue
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ValiteValue.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── WindowsFormsApplication1
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GetWeek.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       └── WindowsFormsApplication2
│   │           ├── Form1.Designer.cs
│   │           ├── Form1.cs
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── WindowsFormsApplication2.csproj
│   │           ├── bin
│   │           └── obj
│   ├── 3数组
│   │   └── 3
│   │       ├── 3.sln
│   │       ├── 3.suo
│   │       ├── AddArrayInArray
│   │       │   ├── AddArrayInArray.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddElementInArray
│   │       │   ├── AddElementInArray.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AddStudentINList
│   │       │   ├── AddStudentINList.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BubbleUpSort
│   │       │   ├── BubbleUpSort.csproj
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── obj
│   │       │   └── 冒泡排序.cs
│   │       ├── DelArrayNoLength
│   │       │   ├── DelArrayNoLength.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DelayArrayNoLength
│   │       │   ├── DelayArrayNoLength.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FastSort
│   │       │   ├── FastSort.csproj
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── obj
│   │       │   └── 快速排序.cs
│   │       ├── FindStr
│   │       │   ├── FindStr.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── InsertSort
│   │       │   ├── InsertSort.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Recursion
│   │       │   ├── 1加到100的递归.cs
│   │       │   ├── Properties
│   │       │   ├── Recursion.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SelectSort
│   │       │   ├── Properties
│   │       │   ├── SelectSort.csproj
│   │       │   ├── bin
│   │       │   ├── obj
│   │       │   └── 选择排序.cs
│   │       ├── SelectXMLByHashTable
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SelectXMLByHashTable.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       └── XEsort
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── XEsort.csproj
│   │           ├── bin
│   │           └── obj
│   ├── 4面向对象
│   │   └── Solution1
│   │       ├── AppInterface
│   │       │   ├── AppInterface.csproj
│   │       │   ├── Class1.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CalcRAreaAbstractClass
│   │       │   ├── CalcRAreaAbstractClass.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DynamicLetter
│   │       │   ├── DynamicLetter.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ExtensiveList
│   │       │   ├── ExtensiveList.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── PeopleSpeakByMState
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── PeopleSpeakByMState.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ShowBusStation
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ShowBusStation.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Solution1.sln
│   │       ├── Solution1.suo
│   │       ├── SquareByMethod
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SquareByMethod.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       └── WindowsFormsApplication1
│   │           ├── Form1.Designer.cs
│   │           ├── Form1.cs
│   │           ├── Program.cs
│   │           ├── Properties
│   │           ├── WindowsFormsApplication1.csproj
│   │           ├── bin
│   │           └── obj
│   ├── 5数据结构和方法
│   │   └── Solution1
│   │       ├── AlterArms
│   │       │   ├── AlterArms.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── AtbitarinessCombination
│   │       │   ├── AtbitarinessCombination.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── BulidNumber
│   │       │   ├── BulidNumber.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── CaesarArithmetic
│   │       │   ├── CaesarArithmetic.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GDBAHArith
│   │       │   ├── GDBAHArith.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetMaxCommonDivisior
│   │       │   ├── GetMaxCommonDivisior.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GetMinCommonMultipule
│   │       │   ├── GetMinCommonMultipule.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── IDCardChange
│   │       │   ├── IDCardChange.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── IncrememntSquare
│   │       │   ├── IncrememntSquare.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── IncrementSquare
│   │       │   ├── Class1.cs
│   │       │   ├── IncrementSquare.csproj
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MD5Arithmetic
│   │       │   ├── MD5Arithmetic.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── PrimenNumber
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── PrimenNumber.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SelectMonkeyKing
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SelectMonkeyKing.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── Solution1.sln
│   │       ├── Solution1.suo
│   │       ├── TenFactiorial
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── TenFactiorial.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── UnilaterlismChainTable
│   │       │   ├── Properties
│   │       │   ├── UnilaterlismChainTable.csproj
│   │       │   ├── bin
│   │       │   ├── clist.cs
│   │       │   └── obj
│   │       ├── lookupnear
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   ├── lookupnear.csproj
│   │       │   └── obj
│   │       └── yanghuisanjiao
│   │           ├── Properties
│   │           ├── bin
│   │           ├── obj
│   │           ├── yanghuisanjiao.cs
│   │           └── yanghuisanjiao.csproj
│   ├── 7wiondows窗体基础
│   │   └── windows窗体基础
│   │       ├── ControlFormSize
│   │       │   ├── ControlFormSize.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── EditFormSize
│   │       │   ├── EditFormSize.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── FlashWindowBar
│   │       │   ├── FlashWindowBar.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── LoadPosition
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── LoadPosition.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── NChangeFormSize
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── NChangeFormSize.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetFormBackImage
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetFormBackImage.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetFromSizeByDeskSize
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetFromSizeByDeskSize.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetLocation
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetLocation.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── windows窗体基础.sln
│   │       └── windows窗体基础.suo
│   ├── 8特色窗体的使用
│   │   └── 特色窗体界面
│   │       ├── ChangeControlSizeByForm
│   │       │   ├── ChangeControlSizeByForm.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── GraduallyBackColor
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── GraduallyBackColor.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── MouseThroughForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── MouseThroughForm.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── NavigationForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── NavigationForm.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── OutLookForm
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── OutLookForm.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── RandomBackGround
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── RandomBackGround.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── 特色窗体界面.sln
│   │       └── 特色窗体界面.suo
│   ├── 9窗体了控制技术
│   │   └── 窗体控制技术
│   │       ├── BubbleShutForm
│   │       │   ├── BubbleShutForm.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DisposeForm
│   │       │   ├── DisposeForm.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DragImageToForm
│   │       │   ├── DragImageToForm.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DynamicTaskStock
│   │       │   ├── DynamicTaskStock.csproj
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── HideIconInTaskBar
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── HideIconInTaskBar.csproj
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── SetExeIcon
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── SetExeIcon.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── ShowDialogByClose
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── ShowDialogByClose.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── StopClassButton
│   │       │   ├── Form1.Designer.cs
│   │       │   ├── Form1.cs
│   │       │   ├── Form1.resx
│   │       │   ├── Program.cs
│   │       │   ├── Properties
│   │       │   ├── StopClassButton.csproj
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── 窗体控制技术.sln
│   │       └── 窗体控制技术.suo
│   ├── c#基础运用
│   │   ├── 1.sln
│   │   ├── 1.suo
│   │   ├── Arithmetic
│   │   │   ├── Arithmetic.csproj
│   │   │   ├── ClassDiagram1.cd
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── CalcRAreaByAbstractClass
│   │   │   ├── CalcRAreaByAbstractClass.csproj
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── GetSeasonsss
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GetSeasonsss.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── Goto
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Goto.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── IfThenElse
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── IfThenElse.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── InputMessage
│   │   │   ├── InputMessage.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── Login
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Login.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── NumGame
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── NumGame.csproj
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── SelectColoe
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── SelectColoe.csproj
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── Transform
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Transform.csproj
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── Using
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Using.csproj
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   ├── WhichWay
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── WhichWay.csproj
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   └── obj
│   │   │       └── x86
│   │   └── typeof
│   │       ├── Form1.Designer.cs
│   │       ├── Form1.cs
│   │       ├── Form1.resx
│   │       ├── Program.cs
│   │       ├── Properties
│   │       │   ├── AssemblyInfo.cs
│   │       │   ├── Resources.Designer.cs
│   │       │   ├── Resources.resx
│   │       │   ├── Settings.Designer.cs
│   │       │   └── Settings.settings
│   │       ├── bin
│   │       │   └── Debug
│   │       ├── obj
│   │       │   └── x86
│   │       └── typeof.csproj
│   ├── 类库
│   │   └── DYC.Data.DbCommon
│   │       ├── DYC.Data.DbCommon
│   │       │   ├── AssemblyInfo.cs
│   │       │   ├── DYC.Data.DbCommon
│   │       │   ├── DYC.Data.DbCommon.SqlClient
│   │       │   ├── DYC.Data.DbCommon.csproj
│   │       │   ├── Properties
│   │       │   ├── bin
│   │       │   └── obj
│   │       ├── DYC.Data.DbCommon.sln
│   │       └── DYC.Data.DbCommon.suo
│   └── 文件夹基本操作
│       └── 16文件夹基本操作
│           ├── 16文件夹基本操作.sln
│           ├── 16文件夹基本操作.suo
│           ├── CamouflageFolder
│           │   ├── CamouflageFolder.csproj
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── CreateDir
│           │   ├── CreateDir.csproj
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── CreateDirByName
│           │   ├── CreateDirByName.csproj
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── DeleteDir
│           │   ├── DeleteDir.csproj
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── DeletwDirByDG
│           │   ├── DeletwDirByDG.csproj
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── GetCurrentSystemDir
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetCurrentSystemDir.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── GetDiskList
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetDiskList.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── GetEnjoinChar
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetEnjoinChar.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── GetFoldCTime
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetFoldCTime.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── GetTempDirectory
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetTempDirectory.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── GetUpDir
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── GetUpDir.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── ISDirExists
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── ISDirExists.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── ManageFileByType
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── ManageFileByType.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           ├── MoveDir
│           │   ├── Form1.Designer.cs
│           │   ├── Form1.cs
│           │   ├── Form1.resx
│           │   ├── MoveDir.csproj
│           │   ├── Program.cs
│           │   ├── Properties
│           │   ├── bin
│           │   └── obj
│           └── 获得应用程序的所在目录
│               ├── Form1.Designer.cs
│               ├── Form1.cs
│               ├── Form1.resx
│               ├── Program.cs
│               ├── Properties
│               ├── bin
│               ├── obj
│               └── 获得应用程序的所在目录.csproj
└── c# winform基础_C#Winform.rar

1249 directories, 1535 files


网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警