Behavior コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Behavior クラスの新しいインスタンスを初期化します。
オーバーロード
Behavior() |
Behavior クラスの新しいインスタンスを初期化します。 |
Behavior(Boolean, BehaviorService) |
指定した Behavior を使用して、BehaviorService クラスの新しいインスタンスを初期化します。 |
Behavior()
Behavior クラスの新しいインスタンスを初期化します。
protected:
Behavior();
protected Behavior ();
Protected Sub New ()
例
Behavior クラスの新しいインスタンスを初期化する方法を次のコード例に示します。 このコード例は、BehaviorService クラスのために提供されている大規模な例の一部です。
public:
DemoGlyph(BehaviorService^ behavior, Control^ control):
Glyph(gcnew BehaviorServiceSample::DemoBehavior)
{
this->behavior = behavior;
this->control = control;
}
public MyGlyph(BehaviorService behaviorSvc, Control control) :
base(new MyBehavior())
{
this.behaviorSvc = behaviorSvc;
this.control = control;
}
Public Sub New(ByVal behaviorSvc As _
System.Windows.Forms.Design.Behavior.BehaviorService, _
ByVal control As Control)
MyBase.New(New MyBehavior())
Me.behaviorSvc = behaviorSvc
Me.control = control
End Sub
こちらもご覧ください
適用対象
Behavior(Boolean, BehaviorService)
指定した Behavior を使用して、BehaviorService クラスの新しいインスタンスを初期化します。
protected:
Behavior(bool callParentBehavior, System::Windows::Forms::Design::Behavior::BehaviorService ^ behaviorService);
protected Behavior (bool callParentBehavior, System.Windows.Forms.Design.Behavior.BehaviorService behaviorService);
protected Behavior (bool callParentBehavior, System.Windows.Forms.Design.Behavior.BehaviorService? behaviorService);
new System.Windows.Forms.Design.Behavior.Behavior : bool * System.Windows.Forms.Design.Behavior.BehaviorService -> System.Windows.Forms.Design.Behavior.Behavior
Protected Sub New (callParentBehavior As Boolean, behaviorService As BehaviorService)
パラメーター
- callParentBehavior
- Boolean
親動作が存在すると、呼び出す必要がある場合は true
。それ以外の場合は false
。
- behaviorService
- BehaviorService
使用する BehaviorService。
例外
callParentBehavior
が true
で、behaviorService
が null
です。
注釈
親の動作は、 によって維持される動作スタックでの次の BehaviorService動作です。 パラメーターが の callParentBehavior
場合、 true
パラメーターを behaviorService
に null
することはできません。
callParentBehavior
は、基底 Behavior クラスが親の動作を呼び出す必要があるかどうかを示し、 で正しい親の動作を BehaviorService 選択できるようにします。
適用対象
.NET