C# 控件缩写大全+命名规范+示例
如有转载,请注明出处:http://www.cnblogs.com/flydoos/archive/2011/08/29/2158903.html
写程序的时候突然忘了C#的控件命名的大小写的规范,去网上找了些资料,拷过来看看。
| 类 型 | 前 缀 | 示 例 |
| Adrotator | adrt | adrtTopAd |
| BulletedList | blst | blstCity |
| Button | btn | btnSubmit |
| Calendar | cal | calMettingDates |
| CheckBox | chk | chkBlue |
| CheckBoxList | chkl | chklFavColors |
| DropDownList | drop | dropCountries |
| FileUpLoad | fup | fupImage |
| HiddenField | hfld | hfldName |
| HyperLink | hlk | hlkDetails |
| Image | img | imgAuntBetty |
| ImageButton | ibtn | ibtnSubmit |
| ImageMap | imap | imapSite |
| Label | lbl | lblResults |
| LinkButton | lbtn | lbtnSubmit |
| ListBox | lst | lstCountries |
| Literal | ltl | ltlTitle |
| Localize | loc | locChina |
| MultiView | mvw | mvwForm1 |
| Panel | pnl | pnlForm2 |
| PlaceHolder | plh | plhFormContents |
| RadioButton | rad | radFemale |
| RadioButtonList | radl | radlGender |
| SubStitution | subs | subsTime |
| Table | tbl | tblCountryCodes |
| TextBox | txt | txtFirstName |
| View | vw | vwCity |
| Wizard | wiz | wizRegister |
| Xml | xml | xmlBooks |
| 类 型 | 前 缀 | 示 例 |
| AccessDataSource | ads | adsPubs |
| DataList | dlst | dlstTitles |
| DetailView | dvw | dvwTitles |
| FormView | fvw | fvwFonts |
| GridView | gvw | gvwCity |
| ObjectDataSource | ods | odsMenus |
| Repeater | rpt | rptQueryResults |
| ReportViewer | rvw | rvwRecord |
| SiteMapDataSource | smds | smdsSite |
| SqlDataSource | sds | sdsBooks |
| XmlDataSource | xds | xdsTitles |
| 类 型 | 前 缀 | 示 例 |
| CompareValidator | valc | valcValidAge |
| CustomValidator | valx | valxDBCheck |
| RangeValidator | valg | valgAge |
| RegularExpressionValidator | vale | valeEmail |
| RequiredFieldValidator | valr | valrFirstName |
| ValidationSummary | vals | valsFormErrors |
| 类 型 | 前 缀 | 示 例 |
| Menu | mnu | mnuUser1 |
| SiteMapPath | smp | smpSite1 |
| TreeView | trvw | trvwMenu |
| 类 型 | 前 缀 | 示 例 |
| ChangePassword | cpwd | cpwdUser1 |
| CreateUserWizard | cuw | cuwLogin |
| Login | log | logCenter |
| LoginName | logn | lognUser |
| LoginStatus | logs | logsUser |
| LoginView | logv | logvUser |
| PasswordRecovery | pwdr | pwdrUser |
| 类 型 | 前 缀 | 示 例 |
| AppearanceEditorPart | paed | paedPart1 |
| BehaviorEditorPart | pbed | pbedPart2 |
| CatalogZone | zca | zcatCity |
| ConnectionsZone | zcon | zconDataBase |
| DeclarativeCatalogPart | pdca | pdcaPart1 |
| EditorZone | zed | zedNews |
| ImportCatalogPart | pica | picaPart |
| LayoutEditorPart | pled | pledNews |
| PageCatalogPart | ppca | ppcaMail |
| PropertyGridEditorPart | ppge | ppgeServer |
| ProxyWebPartManager | mpwp | mpwpWeb |
| WebPartManager | mwp | mwpSite1 |
| WebPartZone | zwp | zwpSite2 |
Other Control(其他控件)
Control type prefix Example
Animated button ani aniMailBox
Button btn
Check box chk chkReadOnly
ColorDialog clrdlg
Combo box, drop-down list box cbo cboEnglish
Communications com comFax
ContextMenu ctxmnu
Control (used within procedures when the specific type is unknown) ctr ctrCurrent
CrystalReportViewer crvw
Data dat datBiblio
Data grid dgd dgdTitles
Data list dbl dblPublisher
Data repeater drp drpLocation
Data-bound combo box dbcbo dbcboLanguage
Data-bound grid dbgrd dbgrdQueryResult
Data-bound list box dblst dblstJobType
Datetime picker dtp dtpPublished
Directory list box dir dirSource
DomainUpDown dupd
Drive list box drv drvTarget
ErrorProvider err
File list box fil filSource
Flat scroll bar fsb fsbMove
FontDialog fntdlg
Form frm frmEntry
Frame fra fraLanguage
Gauge gau gauStatus
Graph gra graRevenue
Grid grd grdPrices
GroupBox grp
HelpProvider hlp
Hierarchical flexgrid flex flexOrders
HScroll bar hsb hsbVolume
Image img imgIcon
Image combo imgcbo imgcboProduct
ImageList ils ilsAllIcons
Label lbl lblHelpMessage
Line lin linVertical
LinkLabel lnk
Listbox lst lstPolicyCodes
ListView lvw lvwHeadings
MAPI message mpm mpmSentMessage
MAPI session mps mpsSession
MCI mci mciVideo
Menu mnu mnuFileOpen
Month view mvw mvwPeriod
MonthCalendar mcl
MS Chart ch chSalesbyRegion
MS Flex grid msg msgClients
MS Tab mst mstFirst
NotifyIcon nti
NumericUpDown nupd
OLE container ole oleWorksheet
OpenFileDialog ofdlg
PageSetUpDialog psdlg
Picture box pic picVGA
Picture clip clp clpToolbar
PrintDocument prndoc
PrintPreviewControl ppctl
PrintPreviewDialog ppdlg
ProgressBar prg prgLoadFile
RadioButton rbtn
Remote Data rd rdTitles
RichTextBox rtf rtfReport
SaveFileDialog sfdlg
Shape shp shpCircle
Slider sld sldScale
Spin spn spnPages
Splitter spt
StatusBar sta staDateTime
SysInfo sys sysMonitor
TabContrl tab
TabStrip tab tabOptions
Text box txt txtLastName
Timer tmr tmrAlarm
Toolbar tlb tlbActions
TrackBar trb
TreeView tre treOrganization
UpDown upd updDirection
VScroll bar vsb vsbRate
2011-09-09 新增,补充一些没有写到的控件
标准控件
btn Button chk CheckBox ckl CheckedListBox
cmb ComboBox dtp DateTimePicker lbl Label
llb LinkLabel lst ListBox lvw ListView
mtx MaskedTextBox cdr MonthCalendar icn NotifyIcon
nud NumeircUpDown pic PictureBox prg ProgressBar
rdo RadioButton rtx RichTextBox txt TextBox
tip ToolTip tvw TreeView wbs WebBrowser 容器控件
flp FlowLayoutPanel grp GroupBox pnl Panel
spl SplitContainer tab TabControl tlp TableLayoutPanel 菜单和工具栏
cms ContextMenuStrip
mns MenuStrip
ssr StatusStrip
tsr ToolStrip
tsc ToolStripContainer 数据
dts DataSet
dgv DataGridView
bds BindingSource
bdn BindingNavigator
rpv ReportViewer 对话框
cld ColorDialog
fbd FolderBrowserDialog
fnd FontDialog
ofd OpenFileDialog
sfd SaveFileDialog 组件
bgw BackgroundWorker
dre DirectoryEntry
drs DirectorySearcher
err ErrorProvider
evl EventLog
fsw FileSystemWatcher
hlp HelpProvider
img ImageList
msq MessageQueue
pfc PerformanceCounter
prc Process
spt SerialPort
scl ServiceController
tmr Timer 印刷
psd PageSetupDialog
prd PrintDialog
pdc PrintDocument
prv PrintPreviewControl
ppd PrintPreviewDialog 水晶报表
crv CrystalReportViewer
rpd ReportDocument
其他
dud DomainUpDown
hsc HScrollBar
prg PropertyGrid
spl Splitter
trb TrackBar
vsc VScrollBar ============================================== <!--------------A----------------->
AdRotator ar <!--------------B----------------->
Button btn <!--------------C----------------->
Calender cal
CheckBox chk
CheckBoxList chklst
Column (DataGridView的) col
ColumnHeader (ListView 的) ch
Combobox cbo
CompareValidator cv
CrystalReportViewer rptvew <!--------------D----------------->
DataGrid dg
DataGridView dgv
DataList dl
DomainUpDown dud
DropDownList ddl <!--------------F----------------->
FileUpload ful
Form frm <!--------------G----------------->
GridView gv
GroupBox grp <!--------------H----------------->
HiddenField hf <!--------------I----------------->
Image img
ImageButton imgbtn
ImageList il <!--------------L----------------->
Label lbl
LinkButton lnkbtn
ListBox lst
ListView lv <!--------------M----------------->
MenuStrip ms <!--------------O----------------->
ObjectDataSource ods <!--------------P----------------->
PagedDataSource pds
Panel pnl
PictureBox pic <!--------------R----------------->
RadioButton rdo
RadioButtonList rdolst
RangeValidator rv
RegularExpressionValidator rev
Repeater rpt
RequiredFieldValidator rfv <!--------------S----------------->
StatusLabel slbl
StatusStrip ss <!--------------T----------------->
TabControl tab
Table tbl
TabPage tp
TextBox txt
Timer tmr
ToolStrip ts
ToolStripButton tsbtn
ToolStripDropDownButton tsddb
ToolStripLabel tslbl
ToolStripMenuItem tsmi
TreeView tv/tvw <!--------------V----------------->
ValidatorSummary vs <!--------------W----------------->
WebBrowser
C# 控件缩写大全+命名规范+示例的更多相关文章
- C#里边的控件缩写大全(比较规范)
标准控件1 btn Button 2 chk CheckBox 3 ckl CheckedListBox 4 cmb ComboBox 5 dtp DateTimePicker 6 lbl Label ...
- (转载)C#控件缩写规范
标准控件缩写规范 类 型 前 缀 示 例 Adrotator adrt adrtTopAd BulletedList blst blstCity Button btn btnSubmit Calend ...
- C# 控件缩写规范
标准控件缩写规范 类 型 前 缀 示 例 Adrotator adrt adrtTopAd BulletedList blst blstCity Button btn btnSubmit Calend ...
- [WinForm]WinForm跨线程UI操作常用控件类大全
前言 在C#开发的WinForm窗体程序开发的时候,经常会使用多线程处理一些比较耗时之类的操作.不过会有一个问题:就是涉及到跨线程操作UI元素. 相信才开始接触的人一定会遇上这个问题. 为了解决这个问 ...
- SELECT控件操作的JS代码示例
SELECT控件操作的JS代码示例 1 检测是否有选中 if(objSelect.selectedIndex > -1) { //说明选中 } else { //说明没有选中 } 2.动态创建s ...
- ASP.NET控件属性大全
ASP.NET控件属性大全 DataGridView 控件DataGridView 控件提供用来显示数据的可自定义表.使用 DataGridView 类,可以自定义单元格.行.列和边框. 注意Data ...
- Asp.Net控件的客户端命名
我们在用ASP.NET写出来的网页,用浏览器来查看生成的客户端代码的时候经常看到这样的代码:GridView1_ctl101_WebUserControl1_webuserControlButton, ...
- delphi控件属性大全-详解-简介
http://blog.csdn.net/u011096030/article/details/18716713 button 组件: CAPTION 属性 :用于在按钮上显示文本内容 Cancel ...
- Android控件属性大全(转)
http://blog.csdn.net/pku_android/article/details/7365685 LinearLayout 线性布局 子元素任意: Tab ...
随机推荐
- Apache Ant运行时Unable to locate tools.jar解决方法
下载Apache Ant 一.解压ant安装包在D:\ant下 二.环境变量配置 ANT_HOME D:\ant\apache-ant-1.9.0 CLASSPATH ;%ANT_HOME%lib; ...
- 【转】Linux下nginx配置https协议访问的方法
一.配置nginx支持https协议访问,需要在编译安装nginx的时候添加相应的模块--with-http_ssl_module 查看nginx编译参数:/usr/local/nginx/sbin/ ...
- 调整label中text显示的行间距
调整label中text显示的行间距最近再做一个项目时,发现UILabel中text的系统默认行间距不能满足要求,于是在网上找到了调整行间距的代码.跟大家分享一下,希望能对你有所帮助.悦德财富:htt ...
- 第八章 标准IO库
1.IO对象时不可复制或者赋值的:也就是说形参或者返回类型也不能为流类型.如果非要传递或者返回IO对象的的话,则必须传递或者返回指向对象的指针或者引用.如: ofstream &print( ...
- ACM - 动态规划专题 题目整理
CodeForces 429B Working out 预处理出从四个顶点到某个位置的最大权值,再枚举相遇点,相遇的时候只有两种情况,取最优解即可. #include<iostream> ...
- 安全增强 Linux (SELinux) 剖析
架构和实现 Linux® 一直被认为是最安全的操作系统之一,但是通过引入安全增强 Linux(Security-Enhanced Linux,SELinux),National Security Ag ...
- 一些需要注意的C知识点
1.数组在作为参数传递到函数时,会退化为一个指针.也就是说,一旦进入函数内部,数组已经变为了一个指针.其实是在参数传递的时候进行了浅拷贝,编译器会声明一个指针指向该数组,在函数内部所有的操作都是对该临 ...
- Tips about Object-oriented programming
1, Return subinterface For example, we have a parent interface: public interface A<T extends A< ...
- 将byte[]数组数据转换为图片用于预览显示
假如服务器返回给你的图片信息是byte[] 然后你需要将起转换成图片显示到你的view中去: 按以下的步骤 1.将获取的byte数组保存 假如为temp[]; 2.将temp[]转化为bitmap,你 ...
- EF中逆变和协变
EF中的增删改查: 实现步骤: 1.声明一个EF的上下文. bjhksjEntities dbContext = new bjhksjEntities(); 2.声明一个实体. HKSJ_USERS ...