在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#自定义组件-抽奖系统

C#自定义组件-抽奖系统

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.41M
  • 下载次数:11
  • 浏览次数:111
  • 发布时间:2023-05-05
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 自定义 组件 C#

实例介绍

【实例简介】C#自定义组件-抽奖系统
c# 自定义组件 button textlist等各式各样的美观组件,可以直接拖过来用 相当方便

【实例截图】

from clipboard

from clipboard

【核心代码】
文件清单
└── Lottery
    ├── CRD.Common
    │   ├── AdapterItem.cs
    │   ├── app.config
    │   ├── AppException.cs
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CRD.Common.dll
    │   │       ├── CRD.Common.dll.config
    │   │       └── CRD.Common.pdb
    │   ├── CRD.Common.csproj
    │   ├── CRD.Common.csproj.vspscc
    │   ├── mssccprj.scc
    │   ├── obj
    │   │   └── Debug
    │   │       ├── CRD.Common.csproj.FileListAbsolute.txt
    │   │       ├── CRD.Common.dll
    │   │       ├── CRD.Common.pdb
    │   │       ├── Refactor
    │   │       │   └── CRD.Common.dll
    │   │       └── TempPE
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   └── vssver2.scc
    │   ├── vssver2.scc
    │   ├── Win32.cs
    │   └── WriteXML.cs
    ├── CRD.WinUI
    │   ├── app.config
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CRD.Common.dll
    │   │       ├── CRD.Common.pdb
    │   │       ├── CRD.WinUI.dll
    │   │       ├── CRD.WinUI.dll.config
    │   │       └── CRD.WinUI.pdb
    │   ├── ClientUtils.cs
    │   ├── ColorSpace.cs
    │   ├── CRD.WinUI.csproj
    │   ├── CRD.WinUI.csproj.user
    │   ├── CRD.WinUI.csproj.vspscc
    │   ├── Editors
    │   │   ├── DataGridView.cs
    │   │   └── vssver2.scc
    │   ├── Forms
    │   │   ├── EnterFrom1.cs
    │   │   ├── EnterFrom1.Designer.cs
    │   │   ├── EnterFrom1.resx
    │   │   ├── EnterUserControl.cs
    │   │   ├── EnterUserControl.Designer.cs
    │   │   ├── EnterUserControl.resx
    │   │   ├── EntryForm.cs
    │   │   ├── EntryForm.Designer.cs
    │   │   ├── EntryForm.resx
    │   │   ├── FormBase1.cs
    │   │   ├── FormBase1.Designer.cs
    │   │   ├── FormBase1.resx
    │   │   ├── FormBase.cs
    │   │   ├── FormBase.Designer.cs
    │   │   ├── FormBase.resx
    │   │   ├── FunctionFormBase.cs
    │   │   ├── FunctionFormBase.Designer.cs
    │   │   ├── FunctionFormBase.resx
    │   │   ├── MainForm.cs
    │   │   ├── MainForm.Designer.cs
    │   │   ├── MainForm.resx
    │   │   ├── MessageBoxForm.cs
    │   │   ├── MessageBoxForm.Designer.cs
    │   │   ├── MessageBoxForm.resx
    │   │   ├── SkinForm.cs
    │   │   ├── SkinForm.Designer.cs
    │   │   ├── SkinForm.resx
    │   │   ├── TipForm.cs
    │   │   ├── TipForm.Designer.cs
    │   │   ├── TipForm.resx
    │   │   └── vssver2.scc
    │   ├── HSLFilter.cs
    │   ├── IForms
    │   │   ├── IMainForm.cs
    │   │   └── vssver2.scc
    │   ├── Misc
    │   │   ├── Button.cs
    │   │   ├── Button.resx
    │   │   ├── ComboBox.cs
    │   │   ├── CommandButton.cs
    │   │   ├── ContextMenuStrip.cs
    │   │   ├── CustomScrollbar.cs
    │   │   ├── DateTimePicker.cs
    │   │   ├── GroupBox.cs
    │   │   ├── Label.cs
    │   │   ├── ListBox.cs
    │   │   ├── panel.cs
    │   │   ├── PictureBox.cs
    │   │   ├── SubClass.cs
    │   │   ├── TabControl.cs
    │   │   ├── TextBox.cs
    │   │   ├── ToolStripRenderer.cs
    │   │   ├── TreeView.cs
    │   │   ├── TreeView.Designer.cs
    │   │   └── vssver2.scc
    │   ├── mssccprj.scc
    │   ├── obj
    │   │   └── Debug
    │   │       ├── CRD.WinUI.csproj.FileListAbsolute.txt
    │   │       ├── CRD.WinUI.csproj.GenerateResource.Cache
    │   │       ├── CRD.WinUI.dll
    │   │       ├── CRD.WinUI.Forms.EnterFrom1.resources
    │   │       ├── CRD.WinUI.Forms.EnterUserControl.resources
    │   │       ├── CRD.WinUI.Forms.EntryForm.resources
    │   │       ├── CRD.WinUI.Forms.FormBase1.resources
    │   │       ├── CRD.WinUI.Forms.FormBase.resources
    │   │       ├── CRD.WinUI.Forms.FunctionFormBase.resources
    │   │       ├── CRD.WinUI.Forms.MainForm.resources
    │   │       ├── CRD.WinUI.Forms.MessageBoxForm.resources
    │   │       ├── CRD.WinUI.Forms.SkinForm.resources
    │   │       ├── CRD.WinUI.Forms.TipForm.resources
    │   │       ├── CRD.WinUI.Misc.Button.resources
    │   │       ├── CRD.WinUI.pdb
    │   │       ├── CRD.WinUI.Properties.Resources.resources
    │   │       ├── Refactor
    │   │       │   └── CRD.WinUI.dll
    │   │       ├── ResolveAssemblyReference.cache
    │   │       └── TempPE
    │   │           └── Properties.Resources.Designer.cs.dll
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   └── vssver2.scc
    │   ├── Resources
    │   │   ├── Common
    │   │   │   ├── button
    │   │   │   │   ├── arrow.bmp
    │   │   │   │   ├── bcenter.bmp
    │   │   │   │   ├── bcenter_noshader.bmp
    │   │   │   │   ├── bleft.bmp
    │   │   │   │   ├── bleft_noshader.bmp
    │   │   │   │   ├── bright.bmp
    │   │   │   │   ├── bright_noshader.bmp
    │   │   │   │   ├── btndown.bmp
    │   │   │   │   ├── btnfore.bmp
    │   │   │   │   ├── btnnomal.bmp
    │   │   │   │   ├── check2.bmp
    │   │   │   │   ├── check.bmp
    │   │   │   │   ├── radio2.bmp
    │   │   │   │   ├── radio.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   ├── toolbar_down.bmp
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── cursor
    │   │   │   │   ├── hand.cur
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── dialog2009
    │   │   │   │   ├── bg.bmp
    │   │   │   │   ├── borderbl.bmp
    │   │   │   │   ├── borderbm.bmp
    │   │   │   │   ├── borderbr.bmp
    │   │   │   │   ├── borderml.bmp
    │   │   │   │   ├── bordermr.bmp
    │   │   │   │   ├── bordertl.bmp
    │   │   │   │   ├── bordertm.bmp
    │   │   │   │   ├── bordertr.bmp
    │   │   │   │   ├── dialog_close.bmp
    │   │   │   │   ├── dialog_close_cleft.bmp
    │   │   │   │   ├── dialog_close_left.bmp
    │   │   │   │   ├── tbclose.bmp
    │   │   │   │   ├── tbleft.bmp
    │   │   │   │   ├── tbmax.bmp
    │   │   │   │   ├── tbmin.bmp
    │   │   │   │   ├── tbnormal.bmp
    │   │   │   │   ├── tbright.bmp
    │   │   │   │   ├── tcleft.bmp
    │   │   │   │   ├── tcright.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── icon
    │   │   │   │   ├── arrow_down.bmp
    │   │   │   │   ├── arrow_up.bmp
    │   │   │   │   ├── certified.bmp
    │   │   │   │   ├── close.bmp
    │   │   │   │   ├── hand.bmp
    │   │   │   │   ├── lock.bmp
    │   │   │   │   ├── LZ-01.bmp
    │   │   │   │   ├── LZ-02.bmp
    │   │   │   │   ├── LZ-03.bmp
    │   │   │   │   ├── LZ-04.bmp
    │   │   │   │   ├── LZ-05.bmp
    │   │   │   │   ├── LZ-06.bmp
    │   │   │   │   ├── LZ.bmp
    │   │   │   │   ├── LZh-01.bmp
    │   │   │   │   ├── LZh-02.bmp
    │   │   │   │   ├── LZh-03.bmp
    │   │   │   │   ├── LZh-04.bmp
    │   │   │   │   ├── LZh-05.bmp
    │   │   │   │   ├── LZh-06.bmp
    │   │   │   │   ├── phone.bmp
    │   │   │   │   ├── play.bmp
    │   │   │   │   ├── qqhome.bmp
    │   │   │   │   ├── sitdown.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   ├── Tipicon.ico
    │   │   │   │   ├── vssver2.scc
    │   │   │   │   └── watch.bmp
    │   │   │   ├── list
    │   │   │   │   ├── del.bmp
    │   │   │   │   ├── spin_nex.bmp
    │   │   │   │   ├── spin_pre.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── menu
    │   │   │   │   ├── hall_sys_icon.bmp
    │   │   │   │   ├── iconbg2.bmp
    │   │   │   │   ├── iconbg.bmp
    │   │   │   │   ├── menu_icon_bg.bmp
    │   │   │   │   ├── menu_sel_left.bmp
    │   │   │   │   ├── menu_sel_mid.bmp
    │   │   │   │   ├── menu_sel_right.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── msgbox
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   ├── tiperror.png
    │   │   │   │   ├── tipnorm.png
    │   │   │   │   ├── tipques.png
    │   │   │   │   ├── tipwarn.png
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── scroll
    │   │   │   │   ├── downarrow.png
    │   │   │   │   ├── scroll.bmp
    │   │   │   │   ├── ThumbBottom.png
    │   │   │   │   ├── ThumbMiddle.png
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   ├── uparrow.png
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── splitter
    │   │   │   │   ├── bg1.bmp
    │   │   │   │   ├── bg2.bmp
    │   │   │   │   ├── bg3.bmp
    │   │   │   │   ├── bg.bmp
    │   │   │   │   ├── down.bmp
    │   │   │   │   ├── left.bmp
    │   │   │   │   ├── right.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   ├── up.bmp
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── tab
    │   │   │   │   ├── next.bmp
    │   │   │   │   ├── pre.bmp
    │   │   │   │   ├── TabIcons.bmp
    │   │   │   │   ├── tab_item_left.bmp
    │   │   │   │   ├── tab_item_mid.bmp
    │   │   │   │   ├── tab_item_right.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   └── Tip
    │   │   │       ├── close_btn.bmp
    │   │   │       ├── Thumbs.db
    │   │   │       ├── tipbg.bmp
    │   │   │       ├── tips-nest.bmp
    │   │   │       ├── vssver2.scc
    │   │   │       ├── watch_btn_hover.ico
    │   │   │       ├── watch_btn_normal.ico
    │   │   │       └── watch_btn_press.ico
    │   │   ├── MainWin
    │   │   │   ├── about.bmp
    │   │   │   ├── Border
    │   │   │   │   ├── bg.bmp
    │   │   │   │   ├── borderbl.bmp
    │   │   │   │   ├── borderbl.psd
    │   │   │   │   ├── borderbm.bmp
    │   │   │   │   ├── borderbr.bmp
    │   │   │   │   ├── borderl.bmp
    │   │   │   │   ├── borderr.bmp
    │   │   │   │   ├── bordertl.bmp
    │   │   │   │   ├── bordertm.bmp
    │   │   │   │   ├── bordertr.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── Border111.rar
    │   │   │   ├── Border.rar
    │   │   │   ├── Button
    │   │   │   │   ├── BlueVip.png
    │   │   │   │   ├── CloseBtn.bmp
    │   │   │   │   ├── ColorBtn.png
    │   │   │   │   ├── Default.png
    │   │   │   │   ├── ItemShop.png
    │   │   │   │   ├── MaxBtn.bmp
    │   │   │   │   ├── MenuBtn.png
    │   │   │   │   ├── MinBtn.bmp
    │   │   │   │   ├── OfficialWebsite.png
    │   │   │   │   ├── RestrBtn.bmp
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── button_help.bmp
    │   │   │   ├── HallTitle.bmp
    │   │   │   ├── maintab.bmp
    │   │   │   ├── QQGame.bmp
    │   │   │   ├── Shading
    │   │   │   │   ├── 1.png
    │   │   │   │   ├── 2.png
    │   │   │   │   ├── 3.png
    │   │   │   │   ├── 4.png
    │   │   │   │   ├── 5.png
    │   │   │   │   ├── 6.png
    │   │   │   │   ├── 7.png
    │   │   │   │   ├── 8.png
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── split.bmp
    │   │   │   ├── Thumbs.db
    │   │   │   ├── Tray
    │   │   │   │   ├── loading01-16.ico
    │   │   │   │   ├── loading01-256.ico
    │   │   │   │   ├── loading02-16.ico
    │   │   │   │   ├── loading02-256.ico
    │   │   │   │   ├── loading02-xp.ico
    │   │   │   │   ├── loading03-16.ico
    │   │   │   │   ├── loading03-256.ico
    │   │   │   │   ├── loading04-16.ico
    │   │   │   │   ├── loading04-256.ico
    │   │   │   │   ├── QGm_16.ico
    │   │   │   │   ├── QGm_256.ico
    │   │   │   │   ├── Thumbs.db
    │   │   │   │   └── vssver2.scc
    │   │   │   ├── vssver2.scc
    │   │   │   └── web
    │   │   │       ├── back.bmp
    │   │   │       ├── Thumbs.db
    │   │   │       ├── vssver2.scc
    │   │   │       ├── web_bbs.png
    │   │   │       ├── web_home.png
    │   │   │       ├── web_line.bmp
    │   │   │       ├── web_next.png
    │   │   │       ├── web_pre.png
    │   │   │       ├── web_spliter.png
    │   │   │       ├── web_stop.png
    │   │   │       └── web_updt.png
    │   │   └── Skin
    │   │       ├── btn.png
    │   │       ├── colors.bmp
    │   │       ├── tab.bmp
    │   │       ├── textures.bmp
    │   │       ├── Thumbs.db
    │   │       └── vssver2.scc
    │   ├── Shared.cs
    │   └── vssver2.scc
    ├── GlassButton
    │   ├── bin
    │   │   └── Debug
    │   │       ├── GlassButton.dll
    │   │       └── GlassButton.pdb
    │   ├── GlassButton.bmp
    │   ├── GlassButton.cs
    │   ├── GlassButton.csproj
    │   ├── GlassButton.Designer.cs
    │   ├── obj
    │   │   └── Debug
    │   │       ├── GlassButton.csproj.FileListAbsolute.txt
    │   │       ├── GlassButton.dll
    │   │       ├── GlassButton.pdb
    │   │       ├── Refactor
    │   │       │   └── GlassButton.dll
    │   │       └── TempPE
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Lottery
    │   ├── bin
    │   │   └── Debug
    │   │       ├── CRD.Common.dll
    │   │       ├── CRD.Common.pdb
    │   │       ├── CRD.WinUI.dll
    │   │       ├── CRD.WinUI.pdb
    │   │       ├── GlassButton.dll
    │   │       ├── GlassButton.pdb
    │   │       ├── Lottery.exe
    │   │       ├── Lottery.ini
    │   │       ├── Lottery.pdb
    │   │       ├── Lottery.vshost.exe
    │   │       ├── Lottery.vshost.exe.manifest
    │   │       ├── Microsoft Excel.ico
    │   │       └── QQSkinForm.dll
    │   ├── Form1.cs
    │   ├── Form1.Designer.cs
    │   ├── Form1.resx
    │   ├── IniFile.cs
    │   ├── Lottery.csproj
    │   ├── Model.cs
    │   ├── obj
    │   │   └── Debug
    │   │       ├── Lottery.csproj.FileListAbsolute.txt
    │   │       ├── Lottery.csproj.GenerateResource.Cache
    │   │       ├── Lottery.exe
    │   │       ├── Lottery.Form1.resources
    │   │       ├── Lottery.ini
    │   │       ├── Lottery.pdb
    │   │       ├── Lottery.Properties.Resources.resources
    │   │       ├── Refactor
    │   │       ├── ResolveAssemblyReference.cache
    │   │       └── TempPE
    │   ├── Program.cs
    │   └── Properties
    │       ├── AssemblyInfo.cs
    │       ├── Resources.Designer.cs
    │       ├── Resources.resx
    │       ├── Settings.Designer.cs
    │       └── Settings.settings
    └── Lottery.sln

57 directories, 350 files

标签: 自定义 组件 C#

实例下载地址

C#自定义组件-抽奖系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警