ToolStripControlHost 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
사용자 지정 컨트롤 또는 Windows Forms 컨트롤을 호스팅합니다.
public ref class ToolStripControlHost : System::Windows::Forms::ToolStripItem
public class ToolStripControlHost : System.Windows.Forms.ToolStripItem
type ToolStripControlHost = class
inherit ToolStripItem
Public Class ToolStripControlHost
Inherits ToolStripItem
- 상속
- 상속
- 파생
예제
다음 코드 예제를 사용 하 여 생성 하는 ToolStripControlHostMonthCalendar 방법을 보여 줍니다는 컨트롤을 사용 하 여 OnSubscribeControlEvents 이벤트를 처리 하 고 해당 멤버 중 일부를 노출 하는 ToolStripControlHost합니다.
//Declare a class that inherits from ToolStripControlHost.
public ref class ToolStripMonthCalendar: public ToolStripControlHost
{
public:
// Call the base constructor passing in a MonthCalendar instance.
ToolStripMonthCalendar() : ToolStripControlHost( gcnew MonthCalendar ) {}
property MonthCalendar^ MonthCalendarControl
{
MonthCalendar^ get()
{
return static_cast<MonthCalendar^>(Control);
}
}
property Day FirstDayOfWeek
{
// Expose the MonthCalendar.FirstDayOfWeek as a property.
Day get()
{
return MonthCalendarControl->FirstDayOfWeek;
}
void set( Day value )
{
MonthCalendarControl->FirstDayOfWeek = value;
}
}
// Expose the AddBoldedDate method.
void AddBoldedDate( DateTime dateToBold )
{
MonthCalendarControl->AddBoldedDate( dateToBold );
}
protected:
// Subscribe and unsubscribe the control events you wish to expose.
void OnSubscribeControlEvents( System::Windows::Forms::Control^ c )
{
// Call the base so the base events are connected.
__super::OnSubscribeControlEvents( c );
// Cast the control to a MonthCalendar control.
MonthCalendar^ monthCalendarControl = (MonthCalendar^)c;
// Add the event.
monthCalendarControl->DateChanged += gcnew DateRangeEventHandler( this, &ToolStripMonthCalendar::HandleDateChanged );
}
void OnUnsubscribeControlEvents( System::Windows::Forms::Control^ c )
{
// Call the base method so the basic events are unsubscribed.
__super::OnUnsubscribeControlEvents( c );
// Cast the control to a MonthCalendar control.
MonthCalendar^ monthCalendarControl = (MonthCalendar^)c;
// Remove the event.
monthCalendarControl->DateChanged -= gcnew DateRangeEventHandler( this, &ToolStripMonthCalendar::HandleDateChanged );
}
public:
event DateRangeEventHandler^ DateChanged;
private:
// Declare the DateChanged event.
// Raise the DateChanged event.
void HandleDateChanged( Object^ sender, DateRangeEventArgs^ e )
{
if ( DateChanged != nullptr )
{
DateChanged( this, e );
}
}
};
//Declare a class that inherits from ToolStripControlHost.
public class ToolStripMonthCalendar : ToolStripControlHost
{
// Call the base constructor passing in a MonthCalendar instance.
public ToolStripMonthCalendar() : base (new MonthCalendar()) { }
public MonthCalendar MonthCalendarControl
{
get
{
return Control as MonthCalendar;
}
}
// Expose the MonthCalendar.FirstDayOfWeek as a property.
public Day FirstDayOfWeek
{
get
{
return MonthCalendarControl.FirstDayOfWeek;
}
set { MonthCalendarControl.FirstDayOfWeek = value; }
}
// Expose the AddBoldedDate method.
public void AddBoldedDate(DateTime dateToBold)
{
MonthCalendarControl.AddBoldedDate(dateToBold);
}
// Subscribe and unsubscribe the control events you wish to expose.
protected override void OnSubscribeControlEvents(Control c)
{
// Call the base so the base events are connected.
base.OnSubscribeControlEvents(c);
// Cast the control to a MonthCalendar control.
MonthCalendar monthCalendarControl = (MonthCalendar) c;
// Add the event.
monthCalendarControl.DateChanged +=
new DateRangeEventHandler(OnDateChanged);
}
protected override void OnUnsubscribeControlEvents(Control c)
{
// Call the base method so the basic events are unsubscribed.
base.OnUnsubscribeControlEvents(c);
// Cast the control to a MonthCalendar control.
MonthCalendar monthCalendarControl = (MonthCalendar) c;
// Remove the event.
monthCalendarControl.DateChanged -=
new DateRangeEventHandler(OnDateChanged);
}
// Declare the DateChanged event.
public event DateRangeEventHandler DateChanged;
// Raise the DateChanged event.
private void OnDateChanged(object sender, DateRangeEventArgs e)
{
if (DateChanged != null)
{
DateChanged(this, e);
}
}
}
'Declare a class that inherits from ToolStripControlHost.
Public Class ToolStripMonthCalendar
Inherits ToolStripControlHost
' Call the base constructor passing in a MonthCalendar instance.
Public Sub New()
MyBase.New(New MonthCalendar())
End Sub
Public ReadOnly Property MonthCalendarControl() As MonthCalendar
Get
Return CType(Control, MonthCalendar)
End Get
End Property
' Expose the MonthCalendar.FirstDayOfWeek as a property.
Public Property FirstDayOfWeek() As Day
Get
Return MonthCalendarControl.FirstDayOfWeek
End Get
Set
MonthCalendarControl.FirstDayOfWeek = value
End Set
End Property
' Expose the AddBoldedDate method.
Public Sub AddBoldedDate(ByVal dateToBold As DateTime)
MonthCalendarControl.AddBoldedDate(dateToBold)
End Sub
' Subscribe and unsubscribe the control events you wish to expose.
Protected Overrides Sub OnSubscribeControlEvents(ByVal c As Control)
' Call the base so the base events are connected.
MyBase.OnSubscribeControlEvents(c)
' Cast the control to a MonthCalendar control.
Dim monthCalendarControl As MonthCalendar = _
CType(c, MonthCalendar)
' Add the event.
AddHandler monthCalendarControl.DateChanged, _
AddressOf HandleDateChanged
End Sub
Protected Overrides Sub OnUnsubscribeControlEvents(ByVal c As Control)
' Call the base method so the basic events are unsubscribed.
MyBase.OnUnsubscribeControlEvents(c)
' Cast the control to a MonthCalendar control.
Dim monthCalendarControl As MonthCalendar = _
CType(c, MonthCalendar)
' Remove the event.
RemoveHandler monthCalendarControl.DateChanged, _
AddressOf HandleDateChanged
End Sub
' Declare the DateChanged event.
Public Event DateChanged As DateRangeEventHandler
' Raise the DateChanged event.
Private Sub HandleDateChanged(ByVal sender As Object, _
ByVal e As DateRangeEventArgs)
RaiseEvent DateChanged(Me, e)
End Sub
End Class
설명
ToolStripControlHost는 ToolStripComboBox, ToolStripTextBox 및 ToolStripProgressBar의 기본 클래스입니다. ToolStripControlHost는 다음 두 가지 방법으로 사용자 지정 컨트롤을 비롯한 다른 컨트롤을 호스팅할 수 있습니다.
Control에서 파생되는 클래스를 사용하여 ToolStripControlHost를 생성합니다. 호스팅된 컨트롤 및 속성에 완전히 액세스하려면 Control 속성을 그 속성이 나타내는 실제 클래스로 다시 캐스팅해야 합니다.
ToolStripControlHost를 확장하고 상속된 클래스의 매개 변수가 없는 생성자에서 기본 클래스 생성자를 호출하여 Control에서 파생되는 클래스를 전달합니다. 이 옵션을 사용하면 공통 컨트롤 메서드 및 속성을 래핑하여 ToolStrip에서 쉽게 액세스할 수 있습니다.
클래스를 ToolStripControlHost 사용하여 사용자 지정된 컨트롤 또는 다른 Windows Forms 컨트롤을 호스트합니다.
를 사용자 지정 ToolStripItem하려면 에서 ToolStripControlHost 파생하고 사용자 지정 구현을 만듭니다. 와 같은 OnSubscribeControlEvents 메서드를 재정의하여 호스트된 컨트롤에서 발생한 이벤트를 처리할 수 있으며, 사용자 지정 기능을 속성에 넣어 호스트된 컨트롤을 향상시킬 수 있습니다.
생성자
ToolStripControlHost(Control) |
지정된 컨트롤을 호스팅하는 ToolStripControlHost 클래스의 새 인스턴스를 초기화합니다. |
ToolStripControlHost(Control, String) |
지정된 컨트롤을 호스팅하고 지정된 이름을 갖는 ToolStripControlHost 클래스의 새 인스턴스를 초기화합니다. |
속성
AccessibilityObject |
컨트롤에 할당된 AccessibleObject를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
AccessibleDefaultActionDescription |
내게 필요한 옵션 지원 클라이언트 애플리케이션에서 사용되는 컨트롤의 기본 작업 설명을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
AccessibleDescription |
내게 필요한 옵션 지원 클라이언트 애플리케이션에 보고할 설명을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
AccessibleName |
내게 필요한 옵션 지원 클라이언트 애플리케이션에서 사용할 컨트롤의 이름을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
AccessibleRole |
컨트롤의 사용자 인터페이스 요소 형식을 지정하는 내게 필요한 옵션 지원 역할을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Alignment |
항목이 ToolStrip의 시작 부분 방향으로 맞춰지는지 아니면 끝 부분 방향으로 맞춰지는지 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
AllowDrop |
사용자가 구현한 이벤트를 통해 끌어서 놓기 및 항목 다시 정렬을 처리할지 여부를 나타내는 값 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Anchor |
ToolStripItem이 바인딩되는 컨테이너의 가장자리를 가져오거나 설정하고 해당 부모를 기초로 ToolStripItem 크기를 조정하는 방법을 결정합니다. (다음에서 상속됨 ToolStripItem) |
AutoSize |
항목의 크기가 자동으로 조정되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
AutoToolTip |
ToolTipText 도구 설명에 Text 속성 또는 ToolStripItem 속성을 사용할지 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Available |
ToolStripItem에 ToolStrip을 배치해야 하는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
BackColor |
컨트롤의 배경색을 가져오거나 설정합니다. |
BackgroundImage |
컨트롤에 표시할 배경 이미지를 가져오거나 설정합니다. |
BackgroundImageLayout |
|
BindingContext |
IBindableComponent에 대한 현재 위치 관리자의 컬렉션을 가져오거나 설정합니다. (다음에서 상속됨 BindableComponent) |
Bounds |
항목의 크기와 위치를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
CanRaiseEvents |
구성 요소가 이벤트를 발생시킬 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
CanSelect |
컨트롤을 선택할 수 있는지를 나타내는 값을 가져옵니다. |
CausesValidation |
호스팅된 컨트롤이 포커스를 받을 때 다른 컨트롤에 대해 유효성 검사 이벤트를 발생시키는지 여부를 나타내는 값을 가져오거나 설정합니다. |
Command |
ToolStripItem의 Click 이벤트가 호출될 때 메서드가 호출될 을 가져오거나 설정합니다.ICommandExecute(Object) (다음에서 상속됨 ToolStripItem) |
CommandParameter |
속성에 할당된 에 ICommand 전달되는 매개 변수를 Command 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Container |
IContainer을 포함하는 Component를 가져옵니다. (다음에서 상속됨 Component) |
ContentRectangle |
배경 테두리를 덮어쓰기 않고 ToolStripItem 안에 텍스트와 아이콘 같은 내용을 배치할 수 있는 영역을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Control |
이 Control가 호스팅하는 ToolStripControlHost을 가져옵니다. |
ControlAlign |
폼에 있는 컨트롤의 맞춤 방식을 가져오거나 설정합니다. |
DataBindings |
이 IBindableComponent에 대한 데이터 바인딩 개체의 컬렉션을 가져옵니다. (다음에서 상속됨 BindableComponent) |
DefaultAutoToolTip |
기본값으로 정의된 ToolTip을 표시할지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultDisplayStyle |
ToolStripItem에 표시되는 대상을 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultMargin |
항목의 기본 여백을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultPadding |
항목의 내부 간격 특징을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultSize |
컨트롤의 기본 크기를 가져옵니다. |
DesignMode |
Component가 현재 디자인 모드인지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
DismissWhenClicked |
ToolStripDropDown에 있는 항목을 클릭할 경우 해당 항목을 숨길지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DisplayStyle |
이 속성은 이 클래스와 관련이 없습니다. |
Dock |
부모 컨트롤에 도킹된 ToolStripItem 테두리를 가져오거나 설정하고 ToolStripItem이 부모와 함께 크기 조정되는 방법을 확인합니다. (다음에서 상속됨 ToolStripItem) |
DoubleClickEnabled |
이 속성은 이 클래스와 관련이 없습니다. |
Enabled |
ToolStripItem의 부모 컨트롤을 사용할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. |
Events |
이 Component에 연결된 이벤트 처리기의 목록을 가져옵니다. (다음에서 상속됨 Component) |
Focused |
컨트롤에 입력 포커스가 있는지를 나타내는 값을 가져옵니다. |
Font |
호스팅된 컨트롤에서 사용되는 글꼴을 가져오거나 설정합니다. |
ForeColor |
호스팅된 컨트롤의 전경색을 가져오거나 설정합니다. |
Height |
ToolStripItem의 높이(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Image |
개체와 연결된 이미지입니다. |
ImageAlign |
이 속성은 이 클래스와 관련이 없습니다. |
ImageIndex |
항목에 표시되는 이미지의 인덱스 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageKey |
ImageList에 표시되는 ToolStripItem에서 이미지의 키 접근자를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageScaling |
이 속성은 이 클래스와 관련이 없습니다. |
ImageTransparentColor |
이 속성은 이 클래스와 관련이 없습니다. |
IsDisposed |
개체가 삭제되었는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
IsOnDropDown |
현재 Control의 컨테이너가 ToolStripDropDown인지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
IsOnOverflow |
Placement 속성이 Overflow로 설정되었는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Margin |
항목과 인접 항목 사이의 간격을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
MergeAction |
자식 메뉴가 부모 메뉴에 병합되는 방법을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
MergeIndex |
현재 ToolStrip 안에 병합된 항목의 위치를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Name |
항목의 이름을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Overflow |
항목이 ToolStrip이나 ToolStripOverflowButton에 연결되었는지 아니면 둘 사이에 부동 상태로 있을 수 있는지 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Owner |
이 항목의 소유자를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
OwnerItem |
이 ToolStripItem의 부모 ToolStripItem를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Padding |
항목의 내용과 가장자리 사이의 내부 간격(픽셀)을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Parent |
ToolStripItem의 부모 컨테이너를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Placement |
항목의 현재 레이아웃을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Pressed |
항목이 누름 상태인지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Renderer |
사용자 지정 컨트롤 또는 Windows Forms 컨트롤을 호스팅합니다. (다음에서 상속됨 ToolStripItem) |
RightToLeft |
오른쪽에서 왼쪽으로 쓰는 글꼴을 사용하는 로캘을 지원하도록 컨트롤 요소가 정렬되어 있는지를 나타내는 값을 가져오거나 설정합니다. |
RightToLeftAutoMirrorImage |
이 속성은 이 클래스와 관련이 없습니다. |
Selected |
항목이 선택되었는지 여부를 나타내는 값을 가져옵니다. |
ShowKeyboardCues |
바로 가기 키를 표시할지 아니면 숨길지 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Site |
호스팅된 컨트롤의 사이트를 가져오거나 설정합니다. |
Size |
ToolStripItem의 크기를 가져오거나 설정합니다. |
Tag |
항목에 대한 데이터를 포함하는 개체를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Text |
호스팅된 컨트롤에 표시되는 텍스트를 가져오거나 설정합니다. |
TextAlign |
이 속성은 이 클래스와 관련이 없습니다. |
TextDirection |
이 속성은 이 클래스와 관련이 없습니다. |
TextImageRelation |
이 속성은 이 클래스와 관련이 없습니다. |
ToolTipText |
컨트롤의 ToolTip으로 표시되는 텍스트를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Visible |
항목이 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Width |
ToolStripItem의 너비(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
메서드
이벤트
AvailableChanged |
Available 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
BackColorChanged |
BackColor 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
BindingContextChanged |
바인딩 컨텍스트가 변경되면 발생합니다. (다음에서 상속됨 BindableComponent) |
Click |
ToolStripItem을 클릭하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
CommandCanExecuteChanged |
속성에 CanExecute(Object) 할당된 Command 의 ICommand 상태 변경된 경우에 발생합니다. (다음에서 상속됨 ToolStripItem) |
CommandChanged |
속성의 할당 ICommand 이 Command 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
CommandParameterChanged |
CommandParameter 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
DisplayStyleChanged |
이 이벤트는 이 클래스와 관련이 없습니다. |
Disposed |
Dispose() 메서드를 호출하여 구성 요소를 삭제할 때 발생합니다. (다음에서 상속됨 Component) |
DoubleClick |
항목을 마우스로 두 번 클릭하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragDrop |
사용자가 항목을 끌어 이 항목에 해당 항목을 놓도록 마우스를 놓을 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragEnter |
사용자가 이 항목의 클라이언트 영역으로 항목을 끌 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragLeave |
사용자가 항목을 끌어 마우스 포인터가 이 항목의 클라이언트 영역에서 벗어날 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragOver |
사용자가 이 항목의 클라이언트 영역 위로 항목을 끌 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
EnabledChanged |
Enabled 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
Enter |
호스팅된 컨트롤이 입력되면 발생합니다. |
ForeColorChanged |
ForeColor 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
GiveFeedback |
끌기 작업을 수행하는 동안 발생합니다. (다음에서 상속됨 ToolStripItem) |
GotFocus |
호스팅된 컨트롤이 포커스를 받으면 발생합니다. |
KeyDown |
호스팅된 컨트롤에 포커스가 있는 동안 키를 누르고 있으면 발생합니다. |
KeyPress |
호스팅된 컨트롤에 포커스가 있을 때 키를 누르면 발생합니다. |
KeyUp |
호스팅된 컨트롤에 포커스가 있을 때 키를 놓으면 발생합니다. |
Leave |
입력 포커스가 호스팅된 컨트롤을 벗어나면 발생합니다. |
LocationChanged |
ToolStripItem의 위치가 업데이트되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
LostFocus |
호스팅된 컨트롤이 포커스를 잃으면 발생합니다. |
MouseDown |
마우스 포인터가 항목 위에 있을 때 마우스 단추를 클릭하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
MouseEnter |
마우스 포인터가 항목에 진입하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
MouseHover |
마우스 포인터로 항목을 가리키면 발생합니다. (다음에서 상속됨 ToolStripItem) |
MouseLeave |
마우스 포인터가 항목을 벗어나면 발생합니다. (다음에서 상속됨 ToolStripItem) |
MouseMove |
마우스 포인터를 항목 위로 이동하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
MouseUp |
마우스 포인터가 항목 위에 있을 때 마우스 단추를 놓으면 발생합니다. (다음에서 상속됨 ToolStripItem) |
OwnerChanged |
Owner 속성이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
Paint |
항목을 다시 그리면 발생합니다. (다음에서 상속됨 ToolStripItem) |
QueryAccessibilityHelp |
내게 필요한 옵션 지원 클라이언트 애플리케이션에서 ToolStripItem에 대한 도움말을 호출하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
QueryContinueDrag |
끌어서 놓기 작업 중에 발생하며 끌기 소스가 끌어서 놓기 작업을 취소해야 할지 여부를 결정하도록 합니다. (다음에서 상속됨 ToolStripItem) |
RightToLeftChanged |
RightToLeft 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
SelectedChanged |
사용자 지정 컨트롤 또는 Windows Forms 컨트롤을 호스팅합니다. (다음에서 상속됨 ToolStripItem) |
TextChanged |
Text 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
Validated |
호스팅된 컨트롤의 유효성 검사가 성공적으로 완료된 후에 발생합니다. |
Validating |
호스팅된 컨트롤의 유효성 검사를 수행하는 중에 발생합니다. |
VisibleChanged |
Visible 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
명시적 인터페이스 구현
IDropTarget.OnDragDrop(DragEventArgs) |
DragDrop 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
IDropTarget.OnDragEnter(DragEventArgs) |
DragEnter 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
IDropTarget.OnDragLeave(EventArgs) |
DragLeave 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
IDropTarget.OnDragOver(DragEventArgs) |
|
적용 대상
추가 정보
.NET