嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#自定义控件库演示demo源码
.
├── C#自定义控件库
│ ├── ControlExs
│ │ ├── Common Class
│ │ │ └── ColorTable.cs
│ │ ├── ControlExs
│ │ │ ├── FormEx
│ │ │ │ ├── FormBase.cs
│ │ │ │ ├── FormEx.cs
│ │ │ │ ├── FormEx.resx
│ │ │ │ ├── Res
│ │ │ │ │ ├── SystemButtons
│ │ │ │ │ │ ├── close_down.png
│ │ │ │ │ │ ├── close_highlight.png
│ │ │ │ │ │ ├── close_normal.png
│ │ │ │ │ │ ├── max_down.png
│ │ │ │ │ │ ├── max_highlight.png
│ │ │ │ │ │ ├── max_normal.png
│ │ │ │ │ │ ├── min_down.png
│ │ │ │ │ │ ├── min_highlight.png
│ │ │ │ │ │ ├── min_normal.png
│ │ │ │ │ │ ├── restore_down.png
│ │ │ │ │ │ ├── restore_highlight.png
│ │ │ │ │ │ └── restore_normal.png
│ │ │ │ │ └── fringe_bkg.png
│ │ │ │ ├── SystemButton.cs
│ │ │ │ └── SystemButtonManager.cs
│ │ │ ├── ImageButton
│ │ │ │ └── ImageButton.cs
│ │ │ └── QQControls
│ │ │ ├── QQButton
│ │ │ │ ├── Image
│ │ │ │ │ ├── qqbtn_down.png
│ │ │ │ │ ├── qqbtn_focus.png
│ │ │ │ │ ├── qqbtn_highlight.png
│ │ │ │ │ └── qqbtn_normal.png
│ │ │ │ └── QQButton.cs
│ │ │ ├── QQCheckBox
│ │ │ │ ├── Image
│ │ │ │ │ └── check.png
│ │ │ │ └── QQCheckBox.cs
│ │ │ ├── QQGlassButton
│ │ │ │ ├── Image
│ │ │ │ │ ├── glassbtn_down.png
│ │ │ │ │ └── glassbtn_hot.png
│ │ │ │ └── QQGlassButton.cs
│ │ │ ├── QQMessageBox
│ │ │ │ ├── Icons
│ │ │ │ │ ├── qqmessagebox_error.png
│ │ │ │ │ ├── qqmessagebox_infor.png
│ │ │ │ │ ├── qqmessagebox_ok.png
│ │ │ │ │ ├── qqmessagebox_question.png
│ │ │ │ │ └── qqmessagebox_warning.png
│ │ │ │ ├── QQMessageBox.cs
│ │ │ │ ├── QQMessageBox.resx
│ │ │ │ ├── QQMessageBoxButtons.cs
│ │ │ │ └── QQMessageBoxIcon.cs
│ │ │ ├── QQRadioButton
│ │ │ │ ├── Image
│ │ │ │ │ └── dot.png
│ │ │ │ └── QQRadioButton.cs
│ │ │ └── QQTextBox
│ │ │ └── QQTextBox.cs
│ │ ├── ControlExs.csproj
│ │ ├── Enums
│ │ │ ├── ClassStyle.cs
│ │ │ ├── MouseOperate.cs
│ │ │ ├── QQControlState.cs
│ │ │ ├── SystemButtonState.cs
│ │ │ ├── WindowStyle.cs
│ │ │ └── WindowStyleEx.cs
│ │ ├── Methods
│ │ │ ├── RenderHelper.cs
│ │ │ └── Win32.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ControlExs.dll
│ │ │ │ ├── ControlExs.pdb
│ │ │ │ └── ControlExs.vshost.exe
│ │ │ └── Release
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── ControlExs.FormEx.resources
│ │ ├── ControlExs.Properties.Resources.resources
│ │ ├── ControlExs.QQMessageBox.resources
│ │ ├── ControlExs.csproj.AssemblyReference.cache
│ │ ├── ControlExs.csproj.CoreCompileInputs.cache
│ │ ├── ControlExs.csproj.FileListAbsolute.txt
│ │ ├── ControlExs.csproj.GenerateResource.cache
│ │ ├── ControlExs.dll
│ │ ├── ControlExs.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GDIPlusDemo.FormDemo.resources
│ │ ├── GDIPlusDemo.FormEx.resources
│ │ ├── GDIPlusDemo.Properties.Resources.resources
│ │ ├── GDIPlusDemo.QQMessageBox.resources
│ │ ├── GDIPlusDemo.csproj.FileListAbsolute.txt
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── ControlExs.sln
│ ├── ControlExs.suo
│ └── Demo
│ ├── Demo.csproj
│ ├── DemoImage
│ │ ├── 360Safe.ico
│ │ ├── FormBackgroundImage
│ │ │ ├── bkg_beautifulcity.jpg
│ │ │ ├── bkg_beer.jpg
│ │ │ ├── bkg_bluelight.jpg
│ │ │ ├── bkg_blueteacup.jpg
│ │ │ ├── bkg_camel.jpg
│ │ │ ├── bkg_erath.jpg
│ │ │ ├── bkg_europlace.jpg
│ │ │ ├── bkg_flower.jpg
│ │ │ ├── bkg_lightwood.jpg
│ │ │ ├── bkg_love.jpg
│ │ │ ├── bkg_nightcloud.jpg
│ │ │ ├── bkg_nightight.jpg
│ │ │ ├── bkg_owl.jpg
│ │ │ ├── bkg_pinklight.jpg
│ │ │ ├── bkg_poppy.jpg
│ │ │ ├── bkg_prinkearth.jpg
│ │ │ ├── bkg_snail.jpg
│ │ │ ├── bkg_soilpicture.jpg
│ │ │ ├── bkg_southtown.jpg
│ │ │ ├── bkg_stars.jpg
│ │ │ ├── bkg_titanic.jpg
│ │ │ ├── bkg_tulip.jpg
│ │ │ ├── bkg_wood.jpg
│ │ │ ├── bkg_yellowsand.jpg
│ │ │ └── splitter.png
│ │ ├── ImageButton
│ │ │ ├── FixAllButton_down.png
│ │ │ ├── FixAllButton_highlight.png
│ │ │ ├── FixAllButton_normal.png
│ │ │ ├── MVBotPlayNext_down.png
│ │ │ ├── MVBotPlayNext_hgihlgiht.png
│ │ │ ├── MVBotPlayNext_normal.png
│ │ │ ├── MVBotPlayPause_down.png
│ │ │ ├── MVBotPlayPause_highlight.png
│ │ │ ├── MVBotPlayPause_normal.png
│ │ │ ├── MVBotPlayPrev_down.png
│ │ │ ├── MVBotPlayPrev_highlight.png
│ │ │ ├── MVBotPlayPrev_normal.png
│ │ │ ├── MVBotPlayStop_down.png
│ │ │ ├── MVBotPlayStop_highlight.png
│ │ │ ├── MVBotPlayStop_normal.png
│ │ │ ├── MVBotPlay_Down.png
│ │ │ ├── MVBotPlay_highLight.png
│ │ │ ├── MVBotPlay_normal.png
│ │ │ ├── UpBtn_hover.png
│ │ │ ├── UpBtn_normal.png
│ │ │ ├── UpBtn_pushed.png
│ │ │ ├── btn_green_dowm.png
│ │ │ ├── btn_green_highlight.png
│ │ │ ├── btn_green_normal.png
│ │ │ ├── listCtrlBtn_Hover.jpg
│ │ │ ├── listCtrlBtn_Normal.jpg
│ │ │ ├── listCtrlBtn_Pushed.jpg
│ │ │ ├── setup_down.png
│ │ │ ├── setup_highight.png
│ │ │ ├── setup_normal.png
│ │ │ ├── skin_down.png
│ │ │ ├── skin_highlight.png
│ │ │ └── skin_normal.png
│ │ ├── Others
│ │ │ └── groupboxbkgImg.png
│ │ ├── QQButton
│ │ │ ├── Add.png
│ │ │ ├── Add_24.png
│ │ │ ├── Alter.png
│ │ │ ├── Alter_24.png
│ │ │ ├── Delete.png
│ │ │ ├── Delete_2.png
│ │ │ ├── Delete_24.png
│ │ │ ├── Delete_2_24.png
│ │ │ ├── Search.png
│ │ │ ├── Update.png
│ │ │ └── Update_24.png
│ │ └── QQGlassButton
│ │ ├── AppBox_grid.png
│ │ ├── Color.png
│ │ ├── Mail.png
│ │ ├── Message.png
│ │ ├── MsgBox.png
│ │ ├── Qzone.png
│ │ ├── Search.png
│ │ └── Tools.png
│ ├── FormDemo.Designer.cs
│ ├── FormDemo.cs
│ ├── FormDemo.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ ├── Debug
│ │ │ ├── ControlExs.dll
│ │ │ ├── ControlExs.pdb
│ │ │ ├── Demo.exe
│ │ │ ├── Demo.pdb
│ │ │ ├── Demo.vshost.exe
│ │ │ └── Demo.vshost.exe.manifest
│ │ └── Release
│ └── obj
│ └── x86
│ └── Debug
│ ├── Demo.FormDemo.resources
│ ├── Demo.Properties.Resources.resources
│ ├── Demo.csproj.AssemblyReference.cache
│ ├── Demo.csproj.CopyComplete
│ ├── Demo.csproj.CoreCompileInputs.cache
│ ├── Demo.csproj.FileListAbsolute.txt
│ ├── Demo.csproj.GenerateResource.cache
│ ├── Demo.csprojResolveAssemblyReference.cache
│ ├── Demo.exe
│ ├── Demo.pdb
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── GenerateResource.read.1.tlog
│ ├── GenerateResource.write.1.tlog
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
└── 好例子网_C#自定义控件库.zip
45 directories, 192 files