【例子介绍】我自己收集的C#实例
这几个是我个人收集的几个比较好的例子 不管初学者还是高手都是相当有用的,有很多技巧可以学习的。
【相关图片】
【源码结构】
.
├── 经典实例
│ ├── Ex01_11
│ │ └── StatusBar
│ │ ├── StatusBar
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── StatusBar.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── StatusBar.exe
│ │ │ │ ├── StatusBar.pdb
│ │ │ │ └── StatusBar.vshost.exe
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── StatusBar.Form1.resources
│ │ │ │ ├── StatusBar.Properties.Resources.resources
│ │ │ │ ├── StatusBar.csproj.GenerateResource.Cache
│ │ │ │ ├── StatusBar.exe
│ │ │ │ ├── StatusBar.pdb
│ │ │ │ └── TempPE
│ │ │ └── StatusBar.csproj.FileList.txt
│ │ ├── StatusBar.sln
│ │ └── StatusBar.suo
│ ├── Ex01_15
│ │ └── Navigation
│ │ ├── Navigation
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Navigation.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Navigation.exe
│ │ │ │ ├── Navigation.pdb
│ │ │ │ └── Navigation.vshost.exe
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Navigation.Form1.resources
│ │ │ │ ├── Navigation.Properties.Resources.resources
│ │ │ │ ├── Navigation.csproj.GenerateResource.Cache
│ │ │ │ ├── Navigation.exe
│ │ │ │ ├── Navigation.pdb
│ │ │ │ └── TempPE
│ │ │ └── Navigation.csproj.FileList.txt
│ │ ├── Navigation.sln
│ │ └── Navigation.suo
│ ├── Ex01_18
│ │ └── WindowsXP
│ │ ├── WindowsXP
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ ├── XP上.jpg
│ │ │ │ ├── XP右.jpg
│ │ │ │ ├── XP小.jpg
│ │ │ │ ├── XP左背景.jpg
│ │ │ │ ├── Xp中.jpg
│ │ │ │ └── Xp中1.jpg
│ │ │ ├── WindowsXP.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── WindowsXP.exe
│ │ │ │ ├── WindowsXP.pdb
│ │ │ │ └── WindowsXP.vshost.exe
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── WindowsXP.Form1.resources
│ │ │ │ ├── WindowsXP.Properties.Resources.resources
│ │ │ │ ├── WindowsXP.csproj.GenerateResource.Cache
│ │ │ │ ├── WindowsXP.exe
│ │ │ │ └── WindowsXP.pdb
│ │ │ └── WindowsXP.csproj.FileList.txt
│ │ ├── WindowsXP.sln
│ │ └── WindowsXP.suo
│ ├── IE
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Backup
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── IE.csproj
│ │ │ ├── IE.csproj.user
│ │ │ ├── IE.sln
│ │ │ └── IE.suo
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── IE.csproj
│ │ ├── IE.csproj.user
│ │ ├── IE.sln
│ │ ├── IE.suo
│ │ ├── UpgradeLog.XML
│ │ ├── _UpgradeReport_Files
│ │ │ ├── UpgradeReport.css
│ │ │ ├── UpgradeReport.xslt
│ │ │ ├── UpgradeReport_Minus.gif
│ │ │ └── UpgradeReport_Plus.gif
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── AxInterop.SHDocVw.dll
│ │ │ ├── IE.exe
│ │ │ ├── IE.pdb
│ │ │ ├── IE.vshost.exe
│ │ │ └── Interop.SHDocVw.dll
│ │ ├── image
│ │ │ ├── 1.BMP
│ │ │ ├── 2.BMP
│ │ │ ├── 3.BMP
│ │ │ ├── 4.BMP
│ │ │ ├── 5.BMP
│ │ │ └── 6.BMP
│ │ └── obj
│ │ ├── AxInterop.SHDocVw.dll
│ │ ├── Debug
│ │ │ ├── AxInterop.SHDocVw.dll
│ │ │ ├── IE.Form1.resources
│ │ │ ├── IE.csproj.GenerateResource.Cache
│ │ │ ├── IE.csproj.ResolveComReference.cache
│ │ │ ├── IE.exe
│ │ │ ├── IE.pdb
│ │ │ ├── IE.projdata
│ │ │ ├── Interop.SHDocVw.dll
│ │ │ ├── TempPE
│ │ │ └── temp
│ │ ├── IE.csproj.FileList.txt
│ │ └── Interop.SHDocVw.dll
│ ├── Mypicture1
│ │ ├── Mypicture1
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Mypicture1.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Mypicture1.exe
│ │ │ │ │ ├── Mypicture1.pdb
│ │ │ │ │ └── Mypicture1.vshost.exe
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Mypicture1.Form1.resources
│ │ │ │ ├── Mypicture1.Properties.Resources.resources
│ │ │ │ ├── Mypicture1.csproj.GenerateResource.Cache
│ │ │ │ ├── Mypicture1.exe
│ │ │ │ ├── Mypicture1.pdb
│ │ │ │ └── TempPE
│ │ │ ├── Mypicture1.csproj.FileList.txt
│ │ │ └── Release
│ │ ├── Mypicture1.sln
│ │ └── Mypicture1.suo
│ ├── Mypicture2
│ │ ├── Mypicture2
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Mypicture2.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Mypicture2.exe
│ │ │ │ │ ├── Mypicture2.pdb
│ │ │ │ │ └── Mypicture2.vshost.exe
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Mypicture2.Form1.resources
│ │ │ │ ├── Mypicture2.Properties.Resources.resources
│ │ │ │ ├── Mypicture2.csproj.GenerateResource.Cache
│ │ │ │ ├── Mypicture2.exe
│ │ │ │ ├── Mypicture2.pdb
│ │ │ │ └── TempPE
│ │ │ ├── Mypicture2.csproj.FileList.txt
│ │ │ └── Release
│ │ ├── Mypicture2.sln
│ │ └── Mypicture2.suo
│ ├── QQ
│ │ ├── QQ
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── QQ.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── QQ.exe
│ │ │ │ ├── QQ.pdb
│ │ │ │ └── QQ.vshost.exe
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── QQ.Form1.resources
│ │ │ │ ├── QQ.Properties.Resources.resources
│ │ │ │ ├── QQ.csproj.GenerateResource.Cache
│ │ │ │ ├── QQ.exe
│ │ │ │ ├── QQ.pdb
│ │ │ │ └── TempPE
│ │ │ └── QQ.csproj.FileList.txt
│ │ ├── QQ.sln
│ │ └── QQ.suo
│ ├── cs_跑马灯
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── Backup
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── cs_跑马灯.csproj
│ │ │ ├── cs_跑马灯.csproj.user
│ │ │ ├── cs_跑马灯.sln
│ │ │ └── cs_跑马灯.suo
│ │ ├── Backup1
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── cs_跑马灯.csproj
│ │ │ ├── cs_跑马灯.csproj.user
│ │ │ ├── cs_跑马灯.sln
│ │ │ └── cs_跑马灯.suo
│ │ ├── Backup2
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── cs_跑马灯.csproj
│ │ │ ├── cs_跑马灯.csproj.user
│ │ │ ├── cs_跑马灯.sln
│ │ │ └── cs_跑马灯.suo
│ │ ├── Backup3
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── cs_跑马灯.csproj
│ │ │ ├── cs_跑马灯.csproj.user
│ │ │ ├── cs_跑马灯.sln
│ │ │ └── cs_跑马灯.suo
│ │ ├── Backup4
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── cs_跑马灯.csproj
│ │ │ ├── cs_跑马灯.csproj.user
│ │ │ ├── cs_跑马灯.sln
│ │ │ └── cs_跑马灯.suo
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── UpgradeLog.XML
│ │ ├── UpgradeLog2.XML
│ │ ├── UpgradeLog3.XML
│ │ ├── UpgradeLog4.XML
│ │ ├── UpgradeLog5.XML
│ │ ├── _UpgradeReport_Files
│ │ │ ├── UpgradeReport.css
│ │ │ ├── UpgradeReport.xslt
│ │ │ ├── UpgradeReport_Minus.gif
│ │ │ └── UpgradeReport_Plus.gif
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── cs_跑马灯.exe
│ │ │ ├── cs_跑马灯.pdb
│ │ │ └── cs_跑马灯.vshost.exe
│ │ ├── cs_跑马灯.csproj
│ │ ├── cs_跑马灯.csproj.user
│ │ ├── cs_跑马灯.sln
│ │ ├── cs_跑马灯.suo
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── TempPE
│ │ │ ├── cs_跑马灯.Form1.resources
│ │ │ ├── cs_跑马灯.csproj.GenerateResource.Cache
│ │ │ ├── cs_跑马灯.exe
│ │ │ ├── cs_跑马灯.exe.incr
│ │ │ ├── cs_跑马灯.pdb
│ │ │ ├── cs_跑马灯.projdata
│ │ │ └── temp
│ │ └── cs_跑马灯.csproj.FileList.txt
│ └── 窗体飘动
│ ├── Myform4
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Myform4.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Myform4.exe
│ │ │ │ ├── Myform4.pdb
│ │ │ │ └── Myform4.vshost.exe
│ │ │ └── Release
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── Myform4.Form1.resources
│ │ │ ├── Myform4.Properties.Resources.resources
│ │ │ ├── Myform4.csproj.GenerateResource.Cache
│ │ │ ├── Myform4.exe
│ │ │ ├── Myform4.pdb
│ │ │ └── TempPE
│ │ ├── Myform4.csproj.FileList.txt
│ │ └── Release
│ ├── Myform4.sln
│ └── Myform4.suo
└── 5t6t网C#_经典实例.rar
90 directories, 265 files
评论