直播中
public int CurrentPercent
{
get
{
return iCurPercent;
}
set
{
if ((value <= 100) && (value >= 0))
{
iCurPercent = value;
if (OnPercentChange != null)
OnPercentChange(iCurPercent);
this.Invalidate();
}
}
}
public Color PercentBackColor
{
get
{
return clPercent;
}
set
{
clPercent = value;
this.Invalidate();
}
}
public Color PercentTextColor
{
get
{
return clText;
}
set
{
clText = value;
this.Invalidate();
}
}
以上首先定義了事件,并在百分比改變時(shí)觸發(fā)。然后是三個(gè)屬性的實(shí)現(xiàn)。
下面,需要在Paint事件里改變Percent控制的顯示狀態(tài)。切換到設(shè)計(jì)頁面,選擇整個(gè)設(shè)計(jì)面板,在屬性視圖中將光標(biāo)移動(dòng)到Paint,按回車,代碼頁面里就自動(dòng)為Paint事件建立了框架,其中其一個(gè)參數(shù)為System.Windows.Forms.PaintEventArgs e,可以用這個(gè)參數(shù)干很多事情。先輸入以下畫百分比控制邊界的代碼:
Pen penBlack = new Pen(Color.Black, 1);
Point ptStart = new Point(0, 0);
Point ptEnd = new Point(this.Width - 1, 0);
e.Graphics.DrawLine(penBlack, ptStart, ptEnd);
ptStart = new Point(0, 0);
ptEnd = new Point(0, this.Height);
e.Graphics.DrawLine(penBlack, ptStart, ptEnd);
Pen penWhite = new Pen(Color.White, 1);
ptStart = new Point(this.Width - 1, 0);
ptEnd = new Point(this.Width - 1, this.Height);
e.Graphics.DrawLine(penWhite, ptStart, ptEnd);
ptStart = new Point(0, this.Height - 1);
ptEnd = new Point(this.Width, this.Height - 1);
e.Graphics.DrawLine(penWhite, ptStart, ptEnd);
SolidBrush brushFill = new SolidBrush(PercentBackColor);
Rectangle rcFill = new Rectangle(2, 2, iCurPercent * (this.Width - 3) / 100, this.Height - 3);
e.Graphics.FillRectangle(brushFill, rcFill);
lbPercent.Left = this.Width / 2 - lbPercent.Width / 2;
lbPercent.Top = this.Height / 2 - lbPercent.Height / 2;
lbPercent.Text = iCurPercent.ToString() + "%";
lbPercent.ForeColor = PercentTextColor;
在控制大小發(fā)生變化時(shí)也應(yīng)該刷新,在設(shè)計(jì)頁面,光標(biāo)移動(dòng)到Resize,回車,在Resize事件中寫下:this.Invalidate();
這樣,這個(gè)百分比控制就編完了。下面,我們在編寫一個(gè)測試程序來測試這個(gè)控制。選擇菜單:文件->添加項(xiàng)目->新建項(xiàng)目,項(xiàng)目類型選擇Visual C#項(xiàng)目,模板選擇Windows應(yīng)用程序,取名為TestPercent,按確定,建立一個(gè)Windows應(yīng)用程序框架。由于是添加了一個(gè)新項(xiàng)目,因此,解決方案資源管理器中就有了兩個(gè)項(xiàng)目:Percent和TestPercent。鼠標(biāo)在TestPercent上單擊右鍵,從彈出菜單中選擇“添加引用”,切換到“項(xiàng)目”頁面,項(xiàng)目名稱應(yīng)為“Percent”,雙擊該項(xiàng)目名稱,把它加到選定的組件里面,按確定。這樣,Percent組件就加到測試工程里了。用過VC的#import指令或者VB的引用的人對這個(gè)操作也許會感覺比較親切。
從工具箱中找到Percent控制,將其拖到測試工程的設(shè)計(jì)面板上擺好,再從工具箱里拖一個(gè)Button和一個(gè)Timer放好。雙擊Button,在其事件中寫下:timer1.Enabled = true; 再回到設(shè)計(jì)面板,雙擊Timer,在其事件中寫下:percent1.CurrentPercent = percent1.CurrentPercent + 1;將焦點(diǎn)移到用戶控制percent1上,找到事件OnPercentChange,回車,在程序框架中寫下:this.Text = CurrentPercent.ToString(); 這樣,測試程序就完成了。
下面運(yùn)行程序,將TestPercent設(shè)為啟動(dòng)項(xiàng)目,運(yùn)行,按下button1,可以看到進(jìn)度增加的同時(shí),窗口標(biāo)題也在發(fā)生變化。
通過這個(gè)簡單的用戶控制的編寫,我們可以體會到C#編程的簡便性,對其開發(fā)環(huán)境有個(gè)基本的了解。該控制也可以很容易地被其他開發(fā)工具,比如Visual Basic.net使用。
以上程序在C366, 128MB, Windows2000 Advanced Server SP2,Visual Studio.net Beta2中文版下編譯通過。