1.窗體啟動時(shí)設(shè)置標(biāo)簽3和標(biāo)簽5的內(nèi)容為200、100
private ?void ? Form_Load(object sender,EventArgs e)
{
label3.Text="200";
label5.Text="100";
}
語法:label.Text="500" ? ? //標(biāo)簽內(nèi)容是500
2.交換按鈕時(shí)間處理
private ?void ? Button_Click(object sender,EventArgs e)
{
int ? ?a,b,c;
a=Convert.ToInt32(label3.Text);
b=Convert.ToInt32(label5.Text);
c=a;
a=b;
b=c;
label8.Text=Convert.ToString(a);
label10.Text=Convert.Tostring(8);
}
語法:
a=Vonvert.ToInt32(label3.Text) ? //int ?a等于標(biāo)簽3的內(nèi)容
label8.Text=Convert.ToString(a) ? ?//標(biāo)簽8的內(nèi)容等于轉(zhuǎn)換后a的內(nèi)容
Convert.ToInt32()婉宰、Convert.ToString() ? ?Convert類Int32方法 ? ?Convert類String方法
3.文本框、標(biāo)簽內(nèi)容輸入
private ?void ? Form_Load(object sender,EventArgs e)
{
text.Box1.Text="5"; ? ? ? ? ? ?//文本框textBox1輸入內(nèi)容是5
label2.Text="10"; ? ? ? ? ? ? ? //標(biāo)簽2輸入的內(nèi)容是10
}
4.隱藏桅滋、顯示慧耍、關(guān)閉窗體
private void ? button1_Click(object sender,EventAgrs e)
{
this.Hide(); ? ? ? ? ?//隱藏窗體
MassageBox.Show("單擊確定按鈕身辨,使窗體重新顯示!"芍碧,“信息框”);
this.Show(); ? ? ? ? ? //顯示窗體
this.Close(); ? ? ? ? ? //關(guān)閉窗體
}
5.求平方
private void ? button1_Click(object sender,EventAgrs e)
{
float ?a,b;
a=Convert.ToSingle(textBox1.Text); ? ? ? ? ? ? ? ? ? ? //文本框1內(nèi)容轉(zhuǎn)化為float ?a
b=a*a;
label2.Text=Convert.ToString(b); ? ? ? ? ? ? ? ? ? ? ? ? ?//標(biāo)簽2等于字符b
}
6.取值范圍
private void ?Form_Load(object sender,EventAgrs e)
{
label1.Text="sbyte數(shù)據(jù)類型范圍:“+sbyte.Min Value+"~”+sbyte.Max Value+"所占字節(jié)數(shù):“+sizeof(sbyte)";
label2.Text="byte數(shù)據(jù)類型范圍:“+byte.Min Value+"~”+byte.Max Value+"所占字節(jié)數(shù):“+sizeof(byte)";
label3.Text="short數(shù)據(jù)類型范圍:“+short.Min Value+"~”+short.Max Value+"所占字節(jié)數(shù):“+sizeof(short)";
}
語法:sizeof() ?用于返回?cái)?shù)據(jù)類型所占字節(jié)數(shù)大小煌珊,括號里必須是一個(gè)數(shù)據(jù)類型
7.字符char類型
private ? void ? Form_Load(object sender,EventAges e)
{
char ? C1,C2,C3;
C1='A';
C2='/x41'; ? ? ? ? ? ? ? ? ? ? ? ? ??
C3='/U0041';
label1.Text=“C1是:”+Convert.ToSting(C1)+"C2是:”+Vonvert.ToSting(C2)+"C3是:"+Convert.ToString(C3);
Label.Text="張三泌豆,/n 你好定庵!"; ? ? ? ? ? ? ? ? ? ? // ? /n表示轉(zhuǎn)義字符表示換行
}
8. 字符串Sting.Format
sting ?s1;
int ?a,b,c;
a=8;
b=9;
c=10;
s1=Sting.Format("a={0,4} b={1,-4} ?c={2,4}",a,b,c);
一踪危、貨幣格式
double ?k=1234.789;
string ?s1,s2;
s1=Sting.Format("{0:c}",k); ? ? ? ? ? ? ? ? ? ? //結(jié)果是:“¥1蔬浙,234.78”
s2=String.Format("{0:c4}",k); ? ? ? ? ? ? ? ? //結(jié)果是:“¥1,234.7890”
二贞远、整數(shù)數(shù)據(jù)類型格式