C#的winform控件命名规范
注:这里用红字标记的部分表示有重复出现,括号内为替代表示方案
1.标准控件
序号 |
控件类型简写 |
控件类型 |
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 |
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 |
另一个版本
序号 |
控件类型 |
控件类型简写 |
标准命名举例 |
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 |
C#的winform控件命名规范的更多相关文章
- C#中常见的winform控件命名规范
我们知道Button 常常简称为btn,那么Winform中的其它控件呢,这篇文章在C#的winform控件命名规范 的基础上对一些控件的名称的简称进行了整理. 1. 标准控件 NO. 控件类型简写 ...
- C#中常见的winform控件命名规范 转
我们知道Button 常常简称为btn,那么Winform中的其它控件呢,这篇文章在C#的winform控件命名规范 的基础上对一些控件的名称的简称进行了整理. 1. 标准控件 NO. 控件类型简写 ...
- Winform 控件命名规范
前言 最近 Winform 项目做得比较多,控件命名规范上常用的能记住,但是有些总要查,写个记录吧.方便以后自己用,大家也可以参考. 标准控件 序号 控件类型简写 控件类型 1 btn Button ...
- winform控件命名规范对照表
WinForm Control 命名规范 数据类型 数据类型简写 标准命名举例 Label lbl lblMessage LinkLabel llbl llblToday Button btn btn ...
- Visual Studio C#的winform/webform/asp.net控件命名规范
控件命名规范 类型 前缀 示例 AdRotator adrt adrtTopAd Button btn btnSubmit Calendar cal calMettingDates CheckBox ...
- Visual C#中的winform/webform/asp.net控件命名规范
1.控件命名规范 类型 前缀 示例 AdRotator ...
- C#控件命名规范
文档名称: C#控件命名规范 撰写作者: codefly 版本编号: V1.1 C#控件命名规范 一.Data Control 类型 前缀 示例 AccessDataSource ads adsPub ...
- Visual Studio 控件命名规范(很详细)
VS 控件命名规范 Type Prefix Example Array arr arrShoppingList Boolean bln blnIsPostBack Byte byt bytPixelV ...
- .NET控件命名规范
一.基本数据类型前缀 数据类型 数据类型简写 Array arr Boolean bln Byte byt Char chr DateTime dtm Decima ...
随机推荐
- ORACLE 9i 数据库体系结构图
ORACLE 9i 的数据库体系结构图,非常的全面.系统.高屋建瓴的整体介绍了ORACLE 9i 的数据库体系结构.如果能全面了解.清晰梳理.深入掌握这些知识点,相信对你了解学习.深入研究ORACLE ...
- Asp.Net MVC+BootStrap+EF6.0实现简单的用户角色权限管理7
做完角色之后接下来做先做页面按钮的增加.删除.修改.这里用到的功能和角色那边是一样的.就不多说了.直接上代码. 后台控制器代码 using AuthorDesign.Web.App_Start.Com ...
- mysql 常用sql
1.查询数据库.表的情况 show engines; #数据库的存储引擎show create TABLE User_Base_Info;#显示create table的sql语句show table ...
- mysql innodb 性能优化
建议参数: max_connections=800 key_buffer_size=512M query_cache_size=128M sort_buffer_size=64M table_open ...
- [WPF系列]-Layout
DockPanel The nice thing about dock panels is they already fill all the available space. LastChildFi ...
- [WPF系列]-基础系列 TabControl应用
引言 Tabcontrol控件也是我们在项目中经常用到的一个控件,用它将相关的信息组织在一起分类显示. 简介 ========================================= ...
- 小讲堂:Mobox文档管理软件中的文件外链是什么?
今天我们来讨论Mobox文档管理软件中的文件外链是什么?熟悉MOBOX的朋友们应该知道,如果有文件需要分享给其他同事,直接可以进行文件共享.对方会在AM的即时通讯客户端有消息提醒,点击消息提醒可以看到 ...
- springboot Serving Web Content with Spring MVC
Serving Web Content with Spring MVC This guide walks you through the process of creating a "hel ...
- CF733C Epidemic in Monstropolis[模拟 构造 贪心]
C. Epidemic in Monstropolis time limit per test 1 second memory limit per test 256 megabytes input s ...
- dotnet core 出现Can not find runtime target for framework '.NETCoreApp,Version=v1.6' 的解决办法
如果你在更新dotnet core新的类库后运行程序提示如下的错误: Can not find runtime target for framework '.NETCoreAPP, Version=v ...