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动态采样分析
td {border:solid #9ec9ec; border-width:0px 1px 1px 0px; padding:4px 0px;} table {border:1px solid #9 ...
- linq to sql 输出SQL语句
DataClassesDataContext db = new DataClassesDataContext(); db.Log=Response.Output; var result = from ...
- 记录sql语句的执行记录,用于分析
SET STATISTICS PROFILE ONSET STATISTICS IO ONSET STATISTICS TIME ONGO --这之间是要执行的脚本select * from [Use ...
- android xml 布局错误
最近重新安装了下android开发环境,发现在调整页面的时候 ,老是报以下错误,导致无法静态显示ui效果. Missing styles. Is the correct theme chosen fo ...
- Git安装与配置
一.简介 Git是一款免费.开源的分布式版本控制系统,用于敏捷高效地处理任何或小或大的项目版本管理. Git 是 Linus Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的 ...
- mysql添加索引命令
创建脚本 1.PRIMARY KEY(主键索引)mysql>ALTER TABLE `table_name` ADD PRIMARY KEY ( `column` ) 2.UNI ...
- PhotoShop算法原理解析系列 - 像素化---》碎片。
接着上一篇文章的热度,继续讲讲一些稍微简单的算法吧. 本文来讲讲碎片算法,先贴几个效果图吧: 这是个破坏性的滤镜,拿美女来说事是因为搞图像的人90%是男人,色色的男人. 关于碎 ...
- UVALive 4998 Simple Encryption --DFS
题意: 给出K1,求一个12位数(不含前导0)K2,使得K1^K2 mod (10^12) = K2. 解法: 求不动点问题. 有一个性质: 如果12位数K2满足如上式子的话,那么K2%1,K2%10 ...
- POJ2942 Knights of the Round Table[点双连通分量|二分图染色|补图]
Knights of the Round Table Time Limit: 7000MS Memory Limit: 65536K Total Submissions: 12439 Acce ...
- reveal
链接 界面调试工具Reveal Reveal使用教程 iOS分析UI利器——Reveal及简单破解方法 Reveal使用步骤和 破解Revealapp的试用时间限制 end