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
면 매개 변수는 이 behaviorService
아니어야 null
true
합니다.
callParentBehavior
는 기본 Behavior 클래스가 부모 동작을 호출해야 하는지 여부를 나타냅니다. 그런 다음 올바른 부모 동작 선택을 허용 BehaviorService 합니다.
적용 대상
.NET