C# 控制項縮寫大全+命名規範+樣本
如有轉載,請註明出處:http://www.cnblogs.com/flydoos/archive/2011/08/29/2158903.html
C# 控制項縮寫大全+命名規範+樣本
寫程式的時候突然忘了C#的控制項命名的大小寫規範,去網上找了些資料,拷過來看看。
Standard Control(標準控制項)
類 型 |
前 綴 |
示 例 |
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 |
Data Control(資料控制項)
類 型 |
前 綴 |
示 例 |
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 |