当前位置:首页 > C#学习 > 正文内容

C# winform控件命名规范整理

小道7年前 (2018-11-30)C#学习4619

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

扫描二维码推送至手机访问。

版权声明:本文由小道发布,如需转载请注明出处。

本文链接:https://daobk.com/post/125.html

分享给朋友:

“C# winform控件命名规范整理” 的相关文章

提示用户输入自己姓和名,最后输出姓名

提示用户输入自己姓和名,最后输出姓名

提示用户输入自己姓和名,最后输出姓名            Console.WriteLine("请输入您的姓");//提示用户输入他的姓。  &n...

函数重名:构成重载的条件:参数类型不同或者参数个数不同(不严谨),与返回值无关。

函数重名:构成重载的条件:参数类型不同或者参数个数不同(不严谨),与返回值无关。

构成重载的条件:参数类型不同或者参数个数不同(不严谨),与返回值无关。        static void Main(string[] args)//默认函数   &...

面向对象概念

面向对象概念

面向对象不是取代面向过程的。类、对象。“人”是类,“张三”是“人”这个类的对象。类是抽象的,对象是具体的。按钮就是类,某个按钮就是对象。对象可以叫做类的实例(Instance)。类就像int,对象就像10。字段Field(和某个对象相关的变量),字段就是类的状态。人这个类有姓名、年龄、身高等字段。类...

构造函数

构造函数

构造函数用来创建对象,并且可以在构造函数中对对象进行初始化。构造函数是用来创建对象的特殊函数,函数名和类名一样,没有返回值,连void都不用。构造函数可以有参数,new对象的时候传递函数参数即可构造函数可以重载,也就是有多个参数不同的构造函数。如果不指定构造函数,则类有一个默认的无参构造函数。如果指...