程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#控件前綴命名規范,

C#控件前綴命名規范,

編輯:C#入門知識

C#控件前綴命名規范,


標准控件

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 ProgressBar

16  rdo RadioButton

17  rtx RichTextBox

18  txt TextBox

19  tip ToolTip

20  tvw TreeView

21  wbs WebBrowser

 容器控件

1 flp FlowLayoutPanel

2 grp GroupBox

3 pnl Panel

4 spl SplitContainer

5 tab TabControl

6 tlp TableLayoutPanel

菜單和工具欄

1 cms ContextMenuStrip

2 mns MenuStrip

3 ssr StatusStrip

4 tsr ToolStrip

5 tsc ToolStripContainer

數據

1 dts DataSet

2 dgv DataGridView

3 bds BindingSource

4 bdn BindingNavigator

5 rpv ReportViewer

對話框

1 cld ColorDialog

2 fbd FolderBrowserDialog

3 fnd FontDialog

4 ofd OpenFileDialog

5 sfd SaveFileDialog

組件

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

印刷

1 psd PageSetupDialog

2 prd PrintDialog

3 pdc PrintDocument

4 prv PrintPreviewControl

5 ppd PrintPreviewDialog

水晶報表

1 crv CrystalReportViewer

2 rpd ReportDocument

其他

1 dud DomainUpDown

2 hsc HScrollBar

3 prg PropertyGrid

4 spl Splitter

5 trb TrackBar

6 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-------------- wb

 

 


C語言裡面,這個符號(->)是什,怎使用?

這是結構體指針中的一個符號,給你寫個程序解釋一下吧,例如:
#include<stdio.h>
struct STU //定義一個結構體
{
int num;
}stu;
int main()
{
struct STU *p; //定義一個結構體指針
p=stu; //p指向stu這個結構體變量
stu.num=100; //給結構體成員num附個初值
printf("%d",p->num); //輸出stu中的num的值
return;
}
看到了吧,->的作法就是在引用結構體中的變量!!
形式如:p->結構體成員(如p->num)
他的作用相當於stu.num或(*p).num
不知道這樣解釋你明不明白、、、、、不懂了call我,O(∩_∩)O~
望采納。
 

C語言裡面,這個符號(->)是什,怎使用?

這是結構體指針中的一個符號,給你寫個程序解釋一下吧,例如:
#include<stdio.h>
struct STU //定義一個結構體
{
int num;
}stu;
int main()
{
struct STU *p; //定義一個結構體指針
p=stu; //p指向stu這個結構體變量
stu.num=100; //給結構體成員num附個初值
printf("%d",p->num); //輸出stu中的num的值
return;
}
看到了吧,->的作法就是在引用結構體中的變量!!
形式如:p->結構體成員(如p->num)
他的作用相當於stu.num或(*p).num
不知道這樣解釋你明不明白、、、、、不懂了call我,O(∩_∩)O~
望采納。
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved