Windows フォーム コントロールのプロパティの定義

更新 : 2007 年 11 月

プロパティの概要については、「プロパティの概要」を参照してください。プロパティを定義する場合に考慮する必要がある点を次に示します。

  • 定義するプロパティに属性を適用する必要があります。属性によって、デザイナでのプロパティの表示形式が指定されます。詳細については、「コンポーネントのデザイン時属性」を参照してください。

  • プロパティの変更がコントロールのビジュアル表示に影響する場合は、set アクセサから Invalidate メソッド (Control から継承されたメソッド) を呼び出します。すると、Invalidate によって、コントロールを再描画する OnPaint メソッドが呼び出されます。効率的な点から、Invalidate メソッドを複数回呼び出しても OnPaint が呼び出されるのは 1 回だけです。

  • .NET Framework クラス ライブラリには、整数、10 進数、ブール値などの一般的なデータ型のための型コンバータが用意されています。型コンバータでは、一般に文字列を値へ変換する、つまり文字列データを他のデータ型に変換することが目的です。標準的なデータ型は既定の型コンバータに関連付けられています。既定の型コンバータでは、値から文字列への変換と、文字列から適切なデータ型への変換が行われます。カスタム (非標準) データ型のプロパティを定義する場合には、そのプロパティに関連付ける型コンバータを指定する属性を適用する必要があります。属性を使用して、カスタム UI 型エディタをプロパティに関連付けることもできます。UI 型エディタには、プロパティやデータ型を編集するためのユーザー インターフェイスが備わっています。カラー ピッカーは、UI 型エディタの例です。属性の例については、このトピックの最後に示します。

    bztt86cs.alert_note(ja-jp,VS.90).gifメモ :

    カスタム プロパティを処理できる型コンバータまたは UI 型エディタがない場合には、「デザイン時サポートの拡張」の説明に従ってコンバータまたはエディタを実装できます。

FlashTrackBar カスタム コントロールの EndColor というカスタム プロパティを定義するコード片を次に示します。

Public Class FlashTrackBar
   Inherits Control
   ...
   ' Private data member that backs the EndColor property.
   Private _endColor As Color = Color.LimeGreen

   ' The Category attribute tells the designer to display
   ' it in the Flash grouping. 
   ' The Description attribute provides a description of
   ' the property. 
   <Category("Flash"), _
   Description("The ending color of the bar.")>  _
   Public Property EndColor() As Color
      ' The public property EndColor accesses _endColor.
      Get
         Return _endColor
      End Get
      Set
         _endColor = value
         If Not (baseBackground Is Nothing) And showGradient Then
            baseBackground.Dispose()
            baseBackground = Nothing
         End If
         ' The Invalidate method calls the OnPaint method, which redraws  
         ' the control.
         Invalidate()
      End Set
   End Property
   ...
End Class
public class FlashTrackBar : Control {
   ...
   // Private data member that backs the EndColor property.
   private Color endColor = Color.LimeGreen;
   // The Category attribute tells the designer to display
   // it in the Flash grouping. 
   // The Description attribute provides a description of
   // the property. 
   [
   Category("Flash"),
   Description("The ending color of the bar.")
   ]
   // The public property EndColor accesses endColor.
   public Color EndColor {
      get {
         return endColor;
      }
      set {
         endColor = value;
         if (baseBackground != null && showGradient) {
            baseBackground.Dispose();
            baseBackground = null;
         }
         // The Invalidate method calls the OnPaint method, which redraws 
         // the control.
         Invalidate();
      }
   }
   ...
}

型コンバータと UI 型エディタを Value プロパティに関連付けるコード片を次に示します。このコードでは、Value プロパティが整数であり、このプロパティには既定の型コンバータが設定されていますが、TypeConverterAttribute 属性によってカスタム型コンバータ (FlashTrackBarValueConverter) が適用されます。これにより、デザイナではこの Value プロパティがパーセントとして表示されます。FlashTrackBarValueEditor UI 型エディタを使用すると、パーセント値が視覚的に表示されます。この例では、さらに TypeConverterAttribute 属性に指定された型コンバータまたは EditorAttribute 属性に指定された型エディタが既定のコンバータをオーバーライドします。

<Category("Flash"), _
TypeConverter(GetType(FlashTrackBarValueConverter)), _
Editor(GetType(FlashTrackBarValueEditor), _
GetType(UITypeEditor)), _
Description("The current value of the track bar.  You can enter an actual value or a percentage.")>  _
Public ReadOnly Property Value() As Integer
...
End Property
[
Category("Flash"), 
TypeConverter(typeof(FlashTrackBarValueConverter)),
Editor(typeof(FlashTrackBarValueEditor), typeof(UITypeEditor)),
Description("The current value of the track bar.  You can enter an actual value or a percentage.")
]
public int Value {
...
}

参照

概念

ShouldSerialize メソッドと Reset メソッドによる既定値の定義

プロパティ変更イベント

Windows フォーム コントロールの属性

その他の技術情報

Windows フォーム コントロールのプロパティ