C#中常见的winform控件命名规范

简介: C#中常见的winform控件命名规范

我们知道Button 常常简称为btn,那么Winform中的其它控件呢,这篇文章在C#的winform控件命名规范 的基础上对一些控件的名称的简称进行了整理。

1. 标准控件

NO. 控件类型简写 控件类型
1 btn Button
2 chk CheckBox
3 ckl CheckedListBox
4 cmb ComboBox
5 dtp DateTimePicker
6 lbl Label
7 llb LinkLabel
8 lst ListBox
9 lvw ListView
10 mtx MaskedTextBox
11 cdr MonthCalendar
12 icn NotifyIcon
13 nud NumeircUpDown
14 pic PictureBox
15 prg(pgb) ProgressBar
16 rdo RadioButton
17 rtx RichTextBox
18 txt, tb TextBox
19 tip ToolTip
20 tvw TreeView
21 wbs WebBrowser

2. 容器控件

序号 控件类型简写 控件类型
1 flp FlowLayoutPanel
2 grp GroupBox
3 pnl Panel
4 spl(spc) SplitContainer
5 tab TabControl
6 tlp TableLayoutPanel

3.菜单和工具栏

序号 控件类型简写 控件类型
1 cms ContextMenuStrip
2 mns MenuStrip
3 ssr StatusStrip
4 tsr ToolStrip
5 tsc ToolStripContainer

4.数据

序号 控件类型简写 控件类型
1 dts DataSet
2 dgv DataGridView
3 bds BindingSource
4 bdn BindingNavigator
5 rpv ReportViewer

5.对话框

序号 控件类型简写 控件类型
1 cld ColorDialog
2 fbd FolderBrowserDialog
3 fnd FontDialog
4 ofd OpenFileDialog
5 sfd SaveFileDialog

6.组件

序号 控件类型简写 控件类型
1 bgw BackgroundWorker
2 dre DirectoryEntry
3 drs DirectorySearcher
4 err ErrorProvider
5 evl EventLog
6 fsw FileSystemWatcher
7 hlp HelpProvider
8 img ImageList
9 msq MessageQueue
10 pfc PerformanceCounter
11 prc Process
12 spt SerialPort
13 scl ServiceController
14 tmr Timer

7.印刷

序号 控件类型简写 控件类型
1 psd PageSetupDialog
2 prd PrintDialog
3 pdc PrintDocument
4 prv PrintPreviewControl
5 ppd PrintPreviewDialog

8.水晶报表

序号 控件类型简写 控件类型
1 crv CrystalReportViewer
2 rpd ReportDocument

9.其他

序号 控件类型简写 控件类型
1 dud DomainUpDown
2 hsc HScrollBar
3 prg PropertyGrid
4 spl Splitter
5 trb TrackBar
6 vsc VScrollBar

10. 另一个版本

序号 控件类型 控件类型简写 标准命名举例
1 Label lbl lblMessage
2 LinkLabel llbl llblToday
3 Button btn btnSave
4 TextBox txt txtName
5 MainMenu mmnu mmnuFile
6 CheckBox chk chkStock
7 RadioButton rbtn rbtnSelected
8 GroupBox gbx gbxMain
9 PictureBox pic picImage
10 Panel pnl pnlBody
11 DataGrid dgrd dgrdView
12 ListBox lst lstProducts
13 CheckedListBox clst clstChecked
14 ComboBox cbo cboMenu
15 ListView lvw lvwBrowser
16 TreeView tvw tvwType
17 TabControl tctl tctlSelected
18 DateTimePicker dtp dtpStartDate
19 HscrollBar hsb hsbImage
20 VscrollBar vsb vsbImage
21 Timer tmr tmrCount
22 ImageList ilst ilstImage
23 ToolBar tlb tlbManage
24 StatusBar stb stbFootPrint
25 OpenFileDialog odlg odlgFile
26 SaveFileDialog sdlg sdlgSave
27 FolderBrowserDialog fbdlg fgdlgBrowser
28 FontDialog fdlg fdlgFoot
29 ColorDialog cdlg cdlgColor
30 PrintDialog pdlg pdlgPrint
相关文章
|
2月前
|
SQL 开发框架 .NET
C#一分钟浅谈:数据绑定与数据源控件
在Web开发中,数据绑定和数据源控件是实现动态网页的关键技术。本文从基础概念入手,详细讲解数据绑定的原理及其在ASP.NET中的应用,并介绍常见数据绑定方式:手动绑定和自动绑定。接着,文章重点介绍了ASP.NET中的数据源控件,如`SqlDataSource`、`ObjectDataSource`、`XmlDataSource`和`LinqDataSource`,并通过具体示例演示如何使用`SqlDataSource`和`GridView`进行数据绑定。最后,还列举了一些常见问题及其解决办法,帮助读者更好地理解和应用这些技术。
82 4
|
4月前
|
C#
|
1月前
|
C# Python
使用wxpython开发跨平台桌面应用,对wxpython控件实现类似C#扩展函数处理的探究
【10月更文挑战第30天】使用 `wxPython` 开发跨平台桌面应用时,可以通过创建辅助类来模拟 C# 扩展函数的功能。具体步骤包括:1. 创建辅助类 `WxWidgetHelpers`;2. 在该类中定义静态方法,如 `set_button_color`;3. 在应用中调用这些方法。这种方法提高了代码的可读性和可维护性,无需修改 `wxPython` 库即可为控件添加自定义功能。但需要注意显式调用方法和避免命名冲突。
|
3月前
|
SQL API 定位技术
基于C#使用winform技术的游戏平台的实现【C#课程设计】
本文介绍了基于C#使用WinForms技术开发的游戏平台项目,包括项目结构、运行截图、实现功能、部分代码说明、数据库设计和完整代码资源。项目涵盖了登录注册、个人信息修改、游戏商城列表查看、游戏管理、用户信息管理、数据分析等功能。代码示例包括ListView和ImageList的使用、图片上传、图表插件使用和SQL工具类封装,以及高德地图天气API的调用。
基于C#使用winform技术的游戏平台的实现【C#课程设计】
|
2月前
|
设计模式 程序员 C#
C# 使用 WinForm MDI 模式管理多个子窗体程序的详细步骤
WinForm MDI 模式就像是有超能力一般,让多个子窗体井然有序地排列在一个主窗体之下,既美观又实用。不过,也要小心管理好子窗体们的生命周期哦,否则一不小心就会出现一些意想不到的小bug
187 0
|
2月前
|
API C# Windows
【C#】在winform中如何实现嵌入第三方软件窗体
【C#】在winform中如何实现嵌入第三方软件窗体
121 0
|
2月前
|
API C#
C#实现Winform程序右下角弹窗消息提示
C#实现Winform程序右下角弹窗消息提示
112 0
|
4月前
|
关系型数据库 Java MySQL
C#winform中使用SQLite数据库
C#winform中使用SQLite数据库
205 3
C#winform中使用SQLite数据库
|
4月前
|
数据库
C#Winform使用NPOI获取word中的数据
C#Winform使用NPOI获取word中的数据
195 2
|
6月前
|
索引
详细解读c#ListBox控件
详细解读c#ListBox控件
44 0