詳解C# WinForm控件開發(fā)如何設(shè)置默認(rèn)值
C# WinForm控件開發(fā)設(shè)置默認(rèn)值是非常有必要的,實(shí)現(xiàn)起來也很容易,本文筆者為你介紹設(shè)置默認(rèn)值的方法,希望能給你帶來幫助。
如果你為屬性設(shè)定了默認(rèn)值,那么當(dāng)開發(fā)者修改了屬性的值,這個值在Property Explorer中將會以粗體顯示。VS為屬性提供一個上下文菜單,允許程序員使用C# WinForm控件開發(fā)把值重置為默認(rèn)值。
當(dāng)Visual Studio進(jìn)行控件的串行化時,他會判斷那些值不是默認(rèn)值,只有不是設(shè)置默認(rèn)值的屬性才會被串行化,所以為屬性提供設(shè)置默認(rèn)值時可以大大減少串行化的屬性數(shù)目,提高效率。
那么Visual Studio進(jìn)怎么知道我們的屬性值不是默認(rèn)值了呢?我們需要一種機(jī)制來通知Visual Studio進(jìn)默認(rèn)值。實(shí)現(xiàn)這種機(jī)制有兩種方法:
對于簡單類型的屬性,比如Int32,Boolean等等這些Primitive類型,你可以在屬性的聲明前設(shè)置一個DefaultValueAttribute,在Attribute的構(gòu)造函數(shù)里傳入設(shè)置默認(rèn)值。
對于復(fù)雜的類型,比如Font,Color,你不能夠直接將這些類型的值傳遞給Attibute的構(gòu)造函數(shù)。相反你應(yīng)該提供Reset
VS能夠根據(jù)方法的名稱來識別這種方法,比如Reset
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Windows.Forms;
- using System.ComponentModel;
- using System.Drawing;
- namespace CustomControlSample
- {
- public class FirstControl : Control
- {
- private String _displayText=”Hello World!”;
- private Color _textColor=Color.Red;
- public FirstControl()
- {
- }
- // ContentAlignment is an enumeration defined in the System.Drawing
- // namespace that specifies the alignment of content on a drawing
- // surface.
- private ContentAlignment alignmentValue = ContentAlignment.MiddleLeft;
- [
- Category("Alignment"),
- Description("Specifies the alignment of text.")
- ]
- public ContentAlignment TextAlignment
- {
- get
- {
- return alignmentValue;
- }
- set
- {
- alignmentValue = value;
- // The Invalidate method invokes the OnPaint method described
- // in step 3.
- Invalidate();
- }
- }
- [Browsable(true)]
- [DefaultValue(“Hello World”)]
- public String DisplayText
- {
- get
- {
- return _displayText;
- }
- set
- {
- _displayText =value;
- Invalidate();
- }
- }
- [Browsable(true)]
- public Color TextColor
- {
- get
- {
- return _textColor;
- }
- set
- {
- _textColor=value;
- Invalidate();
- }
- }
- public void ResetTextColor()
- {
- TextColor=Color.Red;
- }
- public bool ShouldSerializeTextColor()
- {
- return TextColor!=Color.Red;
- }
- protected override void OnPaint(PaintEventArgs e)
- {
- base.OnPaint(e);
- StringFormat style = new StringFormat();
- style.Alignment = StringAlignment.Near;
- switch (alignmentValue)
- {
- case ContentAlignment.MiddleLeft:
- style.Alignment = StringAlignment.Near;
- break;
- case ContentAlignment.MiddleRight:
- style.Alignment = StringAlignment.Far;
- break;
- case ContentAlignment.MiddleCenter:
- style.Alignment = StringAlignment.Center;
- break;
- }
- // Call the DrawString method of the System.Drawing class to write
- // text. Text and ClientRectangle are properties inherited from
- // Control.
- e.Graphics.DrawString(
- DisplayText,
- Font,
- new SolidBrush(TextColor),
- ClientRectangle, style);
- }
- }
- }
在上面C# WinForm控件開發(fā)的代碼中,我增加了兩個屬性,一個是DisplayText,這是一個簡單屬性,我們只需要在它的聲明前添加一個DefaultValue Attribute就可以了。
另外一個是TextColor屬性,這個復(fù)雜類型的屬性,所以我們提供了ResetTextColor和ShouldSerializeTextColor來實(shí)現(xiàn)默認(rèn)值。
C# WinForm控件開發(fā)設(shè)置默認(rèn)值的實(shí)現(xiàn)就講完了,但是有一點(diǎn)不要忽視了,你已經(jīng)設(shè)置默認(rèn)值,就應(yīng)該相應(yīng)的初始化這些屬性,比如我們例子中的代碼:
- private String _displayText=”Hello World!”;
- private Color _textColor=Color.Red;
原文標(biāo)題:WinForm控件開發(fā)總結(jié)(十)-----為屬性設(shè)置默認(rèn)值
鏈接:http://www.cnblogs.com/guanjinke/archive/2006/12/24.html
【編輯推薦】