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 |
C#中常见的winform控件命名规范的更多相关文章
- C#中常见的winform控件命名规范 转
我们知道Button 常常简称为btn,那么Winform中的其它控件呢,这篇文章在C#的winform控件命名规范 的基础上对一些控件的名称的简称进行了整理. 1. 标准控件 NO. 控件类型简写 ...
- Winform 控件命名规范
前言 最近 Winform 项目做得比较多,控件命名规范上常用的能记住,但是有些总要查,写个记录吧.方便以后自己用,大家也可以参考. 标准控件 序号 控件类型简写 控件类型 1 btn Button ...
- C#的winform控件命名规范
注:这里用红字标记的部分表示有重复出现,括号内为替代表示方案 1.标准控件 序号 控件类型简写 控件类型 1 btn Button 2 chk CheckBox 3 ckl CheckedListBo ...
- winform控件命名规范对照表
WinForm Control 命名规范 数据类型 数据类型简写 标准命名举例 Label lbl lblMessage LinkLabel llbl llblToday Button btn btn ...
- Visual C#中的winform/webform/asp.net控件命名规范
1.控件命名规范 类型 前缀 示例 AdRotator ...
- Visual Studio C#的winform/webform/asp.net控件命名规范
控件命名规范 类型 前缀 示例 AdRotator adrt adrtTopAd Button btn btnSubmit Calendar cal calMettingDates CheckBox ...
- [转] c#中 多线程访问winform控件
原文 c#中多线程访问winform控件的若干问题小结 我们在做winform应用的时候,大部分情况下都会碰到使用多线程控制界面上控件信息的问题.然而我们并不能用传统方法来解决这个问题,下面我将详细的 ...
- 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 ...
随机推荐
- String.IsNullOrEmpty()和String.IsNullOrWhiteSpace()
转自:http://hi.baidu.com/saclrpqmttbntyq/item/4592fc72c5a19e5c0d0a07eb 由于总用 String.IsNullOrEmpty( s ) ...
- Caching Tutorial
for Web Authors and Webmasters This is an informational document. Although technical in nature, it a ...
- eclipse 或MyEclipse将工程进行移动的时候会对@Override报错的处理方法
有时候导入javaSE,javaEE,android 工程的时候,明明是刚刚用过的没有问题的工程,但重新导入的时候就报错. 提示The method ... must override a sperc ...
- Linux基础--分类与合并命令
1.sortsort命令将许多不同的域按不同的顺序分类,sort命令的一般格式为: sort -cmu -o output_file [other options] +pos1 +pos2 input ...
- 253. Meeting Rooms II
题目: Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] ...
- CentOS7 升级python同时解决yum损坏问题
CentOS7中的python版本为python2.7.5,升级到最新版的python时需要注意两个问题 新版的python安装好后要修改python的系统默认指向问题 升级到最新版python后yu ...
- get Status canceled 请求被取消
1.chrome浏览器下状况: 2.环境: 一个页面A下 包含一个 iframe ,在子页面中用js点击A页面下的链接替换iframe内容脚本如下: window.parent.document.ge ...
- RMI
Java RMI (Remote Method Invocation 远程方法调用)是用Java在JDK1.1中实现的,它大大增强了Java开发分布式应用的能力.Java作为一种风靡一时的网络开发语言 ...
- 关于java.lang.NoClassDefFoundError: com/sun/mail/util/LineInputStream解决办法
吉林的一个项目有个错误找了一天,有段报错是: java.lang.NoClassDefFoundError: com/sun/mail/util/LineInputStream 1.遇到过两次,第 ...
- Linux线程属性总结
线程属性标识符:pthread_attr_t 包含在 pthread.h 头文件中. //线程属性结构如下: typedef struct { int etachs ...