ToolStripStatusLabel 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
StatusStrip 컨트롤의 패널을 나타냅니다.
public ref class ToolStripStatusLabel : System::Windows::Forms::ToolStripLabel
public ref class ToolStripStatusLabel : System::Windows::Forms::ToolStripLabel, System::Windows::Forms::Automation::IAutomationLiveRegion
[System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip)]
public class ToolStripStatusLabel : System.Windows.Forms.ToolStripLabel
[System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip)]
public class ToolStripStatusLabel : System.Windows.Forms.ToolStripLabel, System.Windows.Forms.Automation.IAutomationLiveRegion
[<System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip)>]
type ToolStripStatusLabel = class
inherit ToolStripLabel
[<System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip)>]
type ToolStripStatusLabel = class
inherit ToolStripLabel
interface IAutomationLiveRegion
Public Class ToolStripStatusLabel
Inherits ToolStripLabel
Public Class ToolStripStatusLabel
Inherits ToolStripLabel
Implements IAutomationLiveRegion
- 상속
- 상속
-
ToolStripStatusLabel
- 특성
- 구현
예제
다음 코드 예제에서는 다양한 공통 속성 집합을 ToolStripStatusLabel 보여 줍니다.
using System;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public class Form1 : Form
{
private StatusStrip statusStrip1;
private ToolStripStatusLabel toolStripStatusLabel1;
public Form1()
{
InitializeComponent();
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new Form1());
}
private void InitializeComponent()
{
statusStrip1 = new System.Windows.Forms.StatusStrip();
toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
statusStrip1.SuspendLayout();
SuspendLayout();
//
// statusStrip1
//
statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
toolStripStatusLabel1});
statusStrip1.Location = new System.Drawing.Point(0, 248);
statusStrip1.Name = "statusStrip1";
statusStrip1.Size = new System.Drawing.Size(292, 25);
statusStrip1.TabIndex = 0;
statusStrip1.Text = "statusStrip1";
//
//
toolStripStatusLabel1.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
toolStripStatusLabel1.BorderStyle = System.Windows.Forms.Border3DStyle.Raised;
toolStripStatusLabel1.IsLink = true;
toolStripStatusLabel1.Name = "toolStripStatusLabel1";
toolStripStatusLabel1.Size = new System.Drawing.Size(246, 20);
toolStripStatusLabel1.Spring = true;
toolStripStatusLabel1.Text = "toolStripStatusLabel1";
toolStripStatusLabel1.Alignment = ToolStripItemAlignment.Left;
// Form1
//
ClientSize = new System.Drawing.Size(292, 273);
Controls.Add(statusStrip1);
Name = "Form1";
statusStrip1.ResumeLayout(false);
statusStrip1.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
}
}
Imports System.Text
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private statusStrip1 As StatusStrip
Private toolStripStatusLabel1 As ToolStripStatusLabel
Public Sub New()
InitializeComponent()
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.Run(New Form1())
End Sub
Private Sub InitializeComponent()
statusStrip1 = New System.Windows.Forms.StatusStrip()
toolStripStatusLabel1 = New System.Windows.Forms.ToolStripStatusLabel()
statusStrip1.SuspendLayout()
SuspendLayout()
'
' statusStrip1
'
statusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {toolStripStatusLabel1})
statusStrip1.Location = New System.Drawing.Point(0, 248)
statusStrip1.Name = "statusStrip1"
statusStrip1.Size = New System.Drawing.Size(292, 25)
statusStrip1.TabIndex = 0
statusStrip1.Text = "statusStrip1"
'
'
toolStripStatusLabel1.BorderSides = CType(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Top Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Right Or System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom, System.Windows.Forms.ToolStripStatusLabelBorderSides)
toolStripStatusLabel1.BorderStyle = System.Windows.Forms.Border3DStyle.Raised
toolStripStatusLabel1.IsLink = True
toolStripStatusLabel1.Name = "toolStripStatusLabel1"
toolStripStatusLabel1.Size = New System.Drawing.Size(246, 20)
toolStripStatusLabel1.Spring = True
toolStripStatusLabel1.Text = "toolStripStatusLabel1"
toolStripStatusLabel1.Alignment = ToolStripItemAlignment.Left
' Form1
'
ClientSize = New System.Drawing.Size(292, 273)
Controls.Add(statusStrip1)
Name = "Form1"
statusStrip1.ResumeLayout(False)
statusStrip1.PerformLayout()
ResumeLayout(False)
PerformLayout()
End Sub
End Class
설명
ToolStripStatusLabel은 ToolStripLabel에서 사용하기 위해 특별히 설계된 StatusStrip의 버전입니다. 특수 기능에는 BorderStyle, BorderSides, 및 Spring가 포함됩니다.
A ToolStripStatusLabel 는 애플리케이션의 상태를 반영하는 텍스트 또는 아이콘을 포함할 수 있습니다. 클래스를 ToolStripItemCollection 사용하여 개체를 찾거나 추가하거나 제거 ToolStripStatusLabel 합니다.
ToolStripStatusLabel .NET 5에서 제거된 StatusBarPanel 컨트롤을 대체하고 확장합니다.
생성자
| Name | Description |
|---|---|
| ToolStripStatusLabel() |
ToolStripStatusLabel 클래스의 새 인스턴스를 초기화합니다. |
| ToolStripStatusLabel(Image) |
지정된 이미지를 표시하는 클래스의 ToolStripStatusLabel 새 인스턴스를 초기화합니다. |
| ToolStripStatusLabel(String, Image, EventHandler, String) |
지정된 이미지와 텍스트를 표시하고 사용자가 클릭할 때 지정된 작업을 수행하는 지정된 이름을 사용하여 클래스의 새 인스턴스 ToolStripStatusLabel 를 초기화합니다 ToolStripStatusLabel. |
| ToolStripStatusLabel(String, Image, EventHandler) |
지정된 이미지와 텍스트를 표시하고 사용자가 클릭할 때 지정된 작업을 수행하는 클래스의 새 인스턴스 ToolStripStatusLabel 를 초기화합니다 ToolStripStatusLabel. |
| ToolStripStatusLabel(String, Image) |
지정된 이미지와 텍스트를 표시하는 클래스의 ToolStripStatusLabel 새 인스턴스를 초기화합니다. |
| ToolStripStatusLabel(String) |
지정된 텍스트를 표시하는 클래스의 ToolStripStatusLabel 새 인스턴스를 초기화합니다. |
속성
| Name | Description |
|---|---|
| AccessibilityObject |
컨트롤에 AccessibleObject 할당된 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| AccessibleDefaultActionDescription |
접근성 클라이언트 애플리케이션에서 사용할 컨트롤의 기본 작업 설명을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| AccessibleDescription |
접근성 클라이언트 애플리케이션에 보고될 설명을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| AccessibleName |
접근성 클라이언트 애플리케이션에서 사용할 컨트롤의 이름을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| AccessibleRole |
컨트롤의 사용자 인터페이스 요소 유형을 지정하는 액세스 가능한 컨트롤 역할을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ActiveLinkColor |
활성 링크를 표시하는 데 사용되는 색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripLabel) |
| Alignment |
에서 정렬ToolStripStatusLabel되는 위치를 StatusStrip 결정하는 값을 가져오거나 설정합니다. |
| AllowDrop |
끌어서 놓기 및 항목 다시 정렬이 구현하는 이벤트를 통해 처리되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Anchor |
바인딩된 ToolStripItem 컨테이너의 가장자리를 가져오거나 설정하며 부모로 크기를 조정하는 방법을 ToolStripItem 결정합니다. (다음에서 상속됨 ToolStripItem) |
| AutoSize |
항목의 크기가 자동으로 조정되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| AutoToolTip |
도구 설명의 속성 또는 속성을 Text 사용할 ToolTipText 지 여부를 나타내는 값을 가져오거나 ToolStripItem 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Available |
에 배치ToolStripItem해야 하는지 여부를 ToolStrip 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| BackColor |
항목의 배경색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| BackgroundImage |
항목에 표시되는 배경 이미지를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| BackgroundImageLayout |
에 사용되는 배경 이미지 레이아웃을 ToolStripItem가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| BindingContext |
에 대한 IBindableComponent통화 관리자 컬렉션을 가져오거나 설정합니다. (다음에서 상속됨 BindableComponent) |
| BorderSides |
표시 테두리의 ToolStripStatusLabel 측면을 나타내는 값을 가져오거나 설정합니다. |
| BorderStyle |
의 테두리 스타일을 ToolStripStatusLabel가져오거나 설정합니다. |
| Bounds |
항목의 크기와 위치를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| CanRaiseEvents |
구성 요소가 이벤트를 발생시키는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
| CanSelect |
의 선택 가능한 상태를 ToolStripLabel나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripLabel) |
| Command |
ToolStripItem의 ICommand 이벤트가 호출될 때 호출할 메서드를 가져오거나 설정합니다.Execute(Object)Click (다음에서 상속됨 ToolStripItem) |
| CommandParameter |
속성에 할당된 매개 변수에 ICommand 전달되는 매개 변수를 Command 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Container |
를 IContainer 포함하는 값을 가져옵니다 Component. (다음에서 상속됨 Component) |
| ContentRectangle |
텍스트 및 아이콘과 같은 콘텐츠를 배경 테두리를 덮어쓰지 않고 배치할 수 있는 ToolStripItem 영역을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| DataBindings |
이에 IBindableComponent대한 데이터 바인딩 개체의 컬렉션을 가져옵니다. (다음에서 상속됨 BindableComponent) |
| DefaultAutoToolTip |
기본값으로 정의된 값을 표시 ToolTip 할지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| DefaultDisplayStyle |
에 ToolStripItem표시되는 내용을 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| DefaultMargin |
항목의 기본 여백을 가져옵니다. |
| DefaultPadding |
항목의 내부 간격 특성을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| DefaultSize |
항목의 기본 크기를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| DesignMode |
현재 디자인 모드인지 여부를 Component 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
| DismissWhenClicked |
항목을 클릭한 후 숨길지 여부를 ToolStripDropDown 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| DisplayStyle |
텍스트와 이미지가 에 ToolStripItem표시되는지 여부를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Dock |
부모 컨트롤에 도킹되는 테두리를 가져오거나 설정 ToolStripItem 하며 부모 컨트롤의 크기를 조정하는 방법을 ToolStripItem 결정합니다. (다음에서 상속됨 ToolStripItem) |
| DoubleClickEnabled |
마우스를 두 번 클릭하여 활성화할 수 있는지 여부를 ToolStripItem 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Enabled |
부모 컨트롤을 ToolStripItem 사용할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Events |
이 Component에 연결된 이벤트 처리기 목록을 가져옵니다. (다음에서 상속됨 Component) |
| Font |
항목에 표시되는 텍스트의 글꼴을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ForeColor |
항목의 전경색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Height |
의 높이(픽셀) ToolStripItem를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Image |
에 ToolStripItem표시되는 이미지를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ImageAlign |
에 있는 ToolStripItem이미지의 맞춤을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ImageIndex |
항목에 표시되는 이미지의 인덱스 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ImageKey |
에 표시되는 ImageList이미지 ToolStripItem 의 키 접근자를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ImageScaling |
컨테이너에 ToolStripItem 맞게 이미지 크기가 자동으로 조정되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ImageTransparentColor |
이미지에서 투명으로 처리할 색을 ToolStripItem 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| IsDisposed |
개체가 삭제되었는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| IsLink |
하이퍼링크인지 여부를 ToolStripLabel 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripLabel) |
| IsOnDropDown |
현재 ControlToolStripDropDown컨테이너가 .인지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| IsOnOverflow |
속성이 .로 설정Placement되었는지 여부를 Overflow 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| LinkBehavior |
링크의 동작을 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripLabel) |
| LinkColor |
일반 링크를 표시할 때 사용되는 색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripLabel) |
| LinkVisited |
링크를 방문한 것처럼 표시할지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripLabel) |
| LiveSetting |
클라이언트가 사용자에게 라이브 지역의 변경 내용을 알리는 데 사용해야 하는 예의 수준을 나타냅니다. |
| Margin |
항목과 인접 항목 사이의 공간을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| MergeAction |
자식 메뉴를 부모 메뉴와 병합하는 방법을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| MergeIndex |
현재 ToolStrip내에서 병합된 항목의 위치를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Name |
항목의 이름을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Overflow |
항목이 둘 사이에 연결되어 ToolStripToolStripOverflowButton 있는지 또는 부동 소수점 사이의 부동 소수점인지를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Owner |
이 항목의 소유자를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| OwnerItem |
이 ToolStripItem항목의 부모를 ToolStripItem 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| Padding |
항목의 내용과 해당 가장자리 사이의 내부 간격을 픽셀 단위로 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Parent |
의 부모 컨테이너 ToolStripItem를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Placement |
항목의 현재 레이아웃을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| Pressed |
항목의 상태를 눌렀는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| Renderer |
부모 ToolStrip렌더러를 반환합니다. (다음에서 상속됨 ToolStripItem) |
| RightToLeft |
항목을 오른쪽에서 왼쪽으로 배치하고 텍스트를 오른쪽에서 왼쪽으로 쓸지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| RightToLeftAutoMirrorImage |
속성이 ToolStripItem .로 설정되면 이미지를 RightToLeft 자동으로 미러링합니다 Yes. (다음에서 상속됨 ToolStripItem) |
| Selected |
항목이 선택되었는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| ShowKeyboardCues |
바로 가기 키를 표시하거나 숨길지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| Site |
ISite를 가져오거나 Component의 값을 설정합니다. (다음에서 상속됨 Component) |
| Size |
항목의 크기를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Spring |
폼의 크기가 조정될 때 ToolStripStatusLabel 사용 가능한 공간을 StatusStrip 자동으로 채울지 여부를 나타내는 값을 가져오거나 설정합니다. |
| Tag |
항목에 대한 데이터가 포함된 개체를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Text |
항목에 표시할 텍스트를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| TextAlign |
에 있는 ToolStripLabel텍스트의 맞춤을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| TextDirection |
에 사용되는 ToolStripItem텍스트의 방향을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
| TextImageRelation |
텍스트와 이미지의 ToolStripItem 위치를 서로 상대적으로 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| ToolTipText |
컨트롤의 텍스트로 ToolTip 표시되는 텍스트를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| Visible |
항목이 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
| VisitedLinkColor |
이전에 방문한 링크를 표시할 때 사용되는 색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripLabel) |
| Width |
너비를 픽셀 ToolStripItem단위로 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
메서드
이벤트
| Name | Description |
|---|---|
| AvailableChanged |
Available 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
| BackColorChanged |
BackColor 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
| BindingContextChanged |
바인딩 컨텍스트가 변경될 때 발생합니다. (다음에서 상속됨 BindableComponent) |
| Click |
클릭할 ToolStripItem 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| CommandCanExecuteChanged |
속성에 CanExecute(Object) 할당된 ICommand 상태 Command 변경 시 발생합니다. (다음에서 상속됨 ToolStripItem) |
| CommandChanged |
속성 할당이 ICommandCommand 변경될 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| CommandParameterChanged |
속성 값 CommandParameter 이 변경될 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| DisplayStyleChanged |
변경된 경우에 DisplayStyle 발생합니다. (다음에서 상속됨 ToolStripItem) |
| Disposed |
구성 요소가 메서드 호출에 Dispose() 의해 삭제될 때 발생합니다. (다음에서 상속됨 Component) |
| DoubleClick |
마우스로 항목을 두 번 클릭할 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| DragDrop |
사용자가 항목을 끌어서 마우스 단추를 놓으면 항목이 이 항목에 삭제되어야 함을 나타냅니다. (다음에서 상속됨 ToolStripItem) |
| DragEnter |
사용자가 항목을 이 항목의 클라이언트 영역으로 끌 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| DragLeave |
사용자가 항목을 끌어와 마우스 포인터가 이 항목의 클라이언트 영역 위에 더 이상 없을 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| DragOver |
사용자가 이 항목의 클라이언트 영역 위로 항목을 끌 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
| EnabledChanged |
Enabled 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
| ForeColorChanged |
속성 값이 변경되면 ForeColor 발생합니다. (다음에서 상속됨 ToolStripItem) |
| GiveFeedback |
끌기 작업 중에 발생합니다. (다음에서 상속됨 ToolStripItem) |
| LocationChanged |
위치 ToolStripItem 가 업데이트되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
| 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 |
Selected 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
| TextChanged |
Text 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
| VisibleChanged |
Visible 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
명시적 인터페이스 구현
| Name | Description |
|---|---|
| IDropTarget.OnDragDrop(DragEventArgs) |
DragDrop 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
| IDropTarget.OnDragEnter(DragEventArgs) |
DragEnter 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
| IDropTarget.OnDragLeave(EventArgs) |
DragLeave 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
| IDropTarget.OnDragOver(DragEventArgs) |
|