ToolStripDropDownItem 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ToolStripDropDown, ToolStripDropDownButton 또는 ToolStripMenuItem 컨트롤을 클릭할 때 ToolStripSplitButton을 표시하는 컨트롤의 기본 기능을 제공합니다.
public ref class ToolStripDropDownItem abstract : System::Windows::Forms::ToolStripItem
public abstract class ToolStripDropDownItem : System.Windows.Forms.ToolStripItem
type ToolStripDropDownItem = class
inherit ToolStripItem
Public MustInherit Class ToolStripDropDownItem
Inherits ToolStripItem
- 상속
- 상속
- 파생
예제
다음 코드 예제에서는 표시 하 고 숨기는 ToolStripMenuItem 방법을 보여 줍니다는 컨트롤입니다.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace ToolStripDropDownItemCS
{
public class Form1 : Form
{
private ToolStrip toolStrip1;
private StatusStrip statusStrip1;
private ToolStripStatusLabel toolStripStatusLabel1;
private ContextMenuStrip contextMenuStrip1;
private ToolStripMenuItem menuItem1ToolStripMenuItem;
private ToolStripMenuItem menuItem2ToolStripMenuItem;
private ToolStripMenuItem subItemToolStripMenuItem;
private ToolStripMenuItem subItem2ToolStripMenuItem;
private Button showButton;
private Button hideButton;
private System.ComponentModel.IContainer components = null;
public Form1()
{
InitializeComponent();
this.InitializeToolStripDropDownItems();
}
// This utility method creates and initializes three
// ToolStripDropDownItem controls and adds them
// to the form's ToolStrip control.
private void InitializeToolStripDropDownItems()
{
ToolStripDropDownButton b = new ToolStripDropDownButton("DropDownButton");
b.DropDown = this.contextMenuStrip1;
b.DropDownClosed += new EventHandler(toolStripDropDownItem_DropDownClosed);
b.DropDownItemClicked += new ToolStripItemClickedEventHandler(toolStripDropDownItem_DropDownItemClicked);
b.DropDownOpened += new EventHandler(toolStripDropDownItem_DropDownOpened);
ToolStripMenuItem m = new ToolStripMenuItem("MenuItem");
m.DropDown = this.contextMenuStrip1;
m.DropDownClosed += new EventHandler(toolStripDropDownItem_DropDownClosed);
m.DropDownItemClicked += new ToolStripItemClickedEventHandler(toolStripDropDownItem_DropDownItemClicked);
m.DropDownOpened += new EventHandler(toolStripDropDownItem_DropDownOpened);
ToolStripSplitButton sb = new ToolStripSplitButton("SplitButton");
sb.DropDown = this.contextMenuStrip1;
sb.DropDownClosed += new EventHandler(toolStripDropDownItem_DropDownClosed);
sb.DropDownItemClicked += new ToolStripItemClickedEventHandler(toolStripDropDownItem_DropDownItemClicked);
sb.DropDownOpened += new EventHandler(toolStripDropDownItem_DropDownOpened);
this.toolStrip1.Items.AddRange(new ToolStripItem[] { b, m, sb });
}
// This method handles the DropDownOpened event from a
// ToolStripDropDownItem. It displays the value of the
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownOpened(object sender, EventArgs e)
{
ToolStripDropDownItem item = sender as ToolStripDropDownItem;
string msg = String.Format("Item opened: {0}", item.Text);
this.toolStripStatusLabel1.Text = msg;
}
// This method handles the DropDownItemClicked event from a
// ToolStripDropDownItem. It displays the value of the clicked
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
string msg = String.Format("Item clicked: {0}", e.ClickedItem.Text);
this.toolStripStatusLabel1.Text = msg;
}
// This method handles the DropDownClosed event from a
// ToolStripDropDownItem. It displays the value of the
// item's Text property in the form's StatusStrip control.
void toolStripDropDownItem_DropDownClosed(object sender, EventArgs e)
{
ToolStripDropDownItem item = sender as ToolStripDropDownItem;
string msg = String.Format("Item closed: {0}", item.Text);
this.toolStripStatusLabel1.Text = msg;
}
// This method shows the drop-down for the first item
// in the form's ToolStrip.
private void showButton_Click(object sender, EventArgs e)
{
ToolStripDropDownItem item = this.toolStrip1.Items[0] as ToolStripDropDownItem;
if (item.HasDropDownItems)
{
item.ShowDropDown();
}
}
// This method hides the drop-down for the first item
// in the form's ToolStrip.
private void hideButton_Click(object sender, EventArgs e)
{
ToolStripDropDownItem item = this.toolStrip1.Items[0] as ToolStripDropDownItem;
item.HideDropDown();
}
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuItem1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuItem2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.subItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.subItem2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showButton = new System.Windows.Forms.Button();
this.hideButton = new System.Windows.Forms.Button();
this.statusStrip1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(292, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(0, 251);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(292, 22);
this.statusStrip1.TabIndex = 1;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(38, 17);
this.toolStripStatusLabel1.Text = "Ready";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItem1ToolStripMenuItem,
this.menuItem2ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.contextMenuStrip1.Size = new System.Drawing.Size(146, 48);
//
// menuItem1ToolStripMenuItem
//
this.menuItem1ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.subItemToolStripMenuItem});
this.menuItem1ToolStripMenuItem.Name = "menuItem1ToolStripMenuItem";
this.menuItem1ToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.menuItem1ToolStripMenuItem.Text = "Menu Item1";
//
// menuItem2ToolStripMenuItem
//
this.menuItem2ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.subItem2ToolStripMenuItem});
this.menuItem2ToolStripMenuItem.Name = "menuItem2ToolStripMenuItem";
this.menuItem2ToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.menuItem2ToolStripMenuItem.Text = "Menu Item 2";
//
// subItemToolStripMenuItem
//
this.subItemToolStripMenuItem.Name = "subItemToolStripMenuItem";
this.subItemToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.subItemToolStripMenuItem.Text = "Sub Item";
//
// subItem2ToolStripMenuItem
//
this.subItem2ToolStripMenuItem.Name = "subItem2ToolStripMenuItem";
this.subItem2ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.subItem2ToolStripMenuItem.Text = "Sub Item2";
//
// showButton
//
this.showButton.Location = new System.Drawing.Point(12, 180);
this.showButton.Name = "showButton";
this.showButton.Size = new System.Drawing.Size(75, 23);
this.showButton.TabIndex = 2;
this.showButton.Text = "Show";
this.showButton.UseVisualStyleBackColor = true;
this.showButton.Click += new System.EventHandler(this.showButton_Click);
//
// hideButton
//
this.hideButton.Location = new System.Drawing.Point(12, 209);
this.hideButton.Name = "hideButton";
this.hideButton.Size = new System.Drawing.Size(75, 23);
this.hideButton.TabIndex = 3;
this.hideButton.Text = "Hide";
this.hideButton.UseVisualStyleBackColor = true;
this.hideButton.Click += new System.EventHandler(this.hideButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.hideButton);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.showButton);
this.Name = "Form1";
this.Text = "Form1";
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
}
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Drawing
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private toolStrip1 As ToolStrip
Private statusStrip1 As StatusStrip
Private toolStripStatusLabel1 As ToolStripStatusLabel
Private contextMenuStrip1 As ContextMenuStrip
Private menuItem1ToolStripMenuItem As ToolStripMenuItem
Private menuItem2ToolStripMenuItem As ToolStripMenuItem
Private subItemToolStripMenuItem As ToolStripMenuItem
Private subItem2ToolStripMenuItem As ToolStripMenuItem
Private WithEvents showButton As Button
Private WithEvents hideButton As Button
Private components As System.ComponentModel.IContainer = Nothing
Public Sub New()
InitializeComponent()
Me.InitializeToolStripDropDownItems()
End Sub
' This utility method creates and initializes three
' ToolStripDropDownItem controls and adds them
' to the form's ToolStrip control.
Private Sub InitializeToolStripDropDownItems()
Dim b As New ToolStripDropDownButton("DropDownButton")
b.DropDown = Me.contextMenuStrip1
AddHandler b.DropDownClosed, AddressOf toolStripDropDownItem_DropDownClosed
AddHandler b.DropDownItemClicked, AddressOf toolStripDropDownItem_DropDownItemClicked
AddHandler b.DropDownOpened, AddressOf toolStripDropDownItem_DropDownOpened
Dim m As New ToolStripMenuItem("MenuItem")
m.DropDown = Me.contextMenuStrip1
AddHandler m.DropDownClosed, AddressOf toolStripDropDownItem_DropDownClosed
AddHandler m.DropDownItemClicked, AddressOf toolStripDropDownItem_DropDownItemClicked
AddHandler m.DropDownOpened, AddressOf toolStripDropDownItem_DropDownOpened
Dim sb As New ToolStripSplitButton("SplitButton")
sb.DropDown = Me.contextMenuStrip1
AddHandler sb.DropDownClosed, AddressOf toolStripDropDownItem_DropDownClosed
AddHandler sb.DropDownItemClicked, AddressOf toolStripDropDownItem_DropDownItemClicked
AddHandler sb.DropDownOpened, AddressOf toolStripDropDownItem_DropDownOpened
Me.toolStrip1.Items.AddRange(New ToolStripItem() {b, m, sb})
End Sub
' This method handles the DropDownOpened event from a
' ToolStripDropDownItem. It displays the value of the
' item's Text property in the form's StatusStrip control.
Private Sub toolStripDropDownItem_DropDownOpened(ByVal sender As Object, ByVal e As EventArgs)
Dim item As ToolStripDropDownItem = CType(sender, ToolStripDropDownItem)
Dim msg As String = String.Format("Item opened: {0}", item.Text)
Me.toolStripStatusLabel1.Text = msg
End Sub
' This method handles the DropDownItemClicked event from a
' ToolStripDropDownItem. It displays the value of the clicked
' item's Text property in the form's StatusStrip control.
Private Sub toolStripDropDownItem_DropDownItemClicked( _
ByVal sender As Object, _
ByVal e As ToolStripItemClickedEventArgs)
Dim msg As String = String.Format("Item clicked: {0}", e.ClickedItem.Text)
Me.toolStripStatusLabel1.Text = msg
End Sub
' This method handles the DropDownClosed event from a
' ToolStripDropDownItem. It displays the value of the
' item's Text property in the form's StatusStrip control.
Private Sub toolStripDropDownItem_DropDownClosed(ByVal sender As Object, ByVal e As EventArgs)
Dim item As ToolStripDropDownItem = CType(sender, ToolStripDropDownItem)
Dim msg As String = String.Format("Item closed: {0}", item.Text)
Me.toolStripStatusLabel1.Text = msg
End Sub
' This method shows the drop-down for the first item
' in the form's ToolStrip.
Private Sub showButton_Click( _
ByVal sender As Object, _
ByVal e As EventArgs) _
Handles showButton.Click
Dim item As ToolStripDropDownItem = CType(Me.toolStrip1.Items(0), ToolStripDropDownItem)
If item.HasDropDownItems Then
item.ShowDropDown()
End If
End Sub
' This method hides the drop-down for the first item
' in the form's ToolStrip.
Private Sub hideButton_Click( _
ByVal sender As Object, _
ByVal e As EventArgs) _
Handles hideButton.Click
Dim item As ToolStripDropDownItem = CType(Me.toolStrip1.Items(0), ToolStripDropDownItem)
item.HideDropDown()
End Sub
Protected Overrides Sub Dispose(disposing As Boolean)
If disposing AndAlso (components IsNot Nothing) Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub
#Region "Windows Form Designer generated code"
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Me.toolStrip1 = New System.Windows.Forms.ToolStrip()
Me.statusStrip1 = New System.Windows.Forms.StatusStrip()
Me.toolStripStatusLabel1 = New System.Windows.Forms.ToolStripStatusLabel()
Me.contextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.menuItem1ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.menuItem2ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.subItemToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.subItem2ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.showButton = New System.Windows.Forms.Button()
Me.hideButton = New System.Windows.Forms.Button()
Me.statusStrip1.SuspendLayout()
Me.contextMenuStrip1.SuspendLayout()
Me.SuspendLayout()
'
' toolStrip1
'
Me.toolStrip1.Location = New System.Drawing.Point(0, 0)
Me.toolStrip1.Name = "toolStrip1"
Me.toolStrip1.Size = New System.Drawing.Size(292, 25)
Me.toolStrip1.TabIndex = 0
Me.toolStrip1.Text = "toolStrip1"
'
' statusStrip1
'
Me.statusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.toolStripStatusLabel1})
Me.statusStrip1.Location = New System.Drawing.Point(0, 251)
Me.statusStrip1.Name = "statusStrip1"
Me.statusStrip1.Size = New System.Drawing.Size(292, 22)
Me.statusStrip1.TabIndex = 1
Me.statusStrip1.Text = "statusStrip1"
'
' toolStripStatusLabel1
'
Me.toolStripStatusLabel1.Name = "toolStripStatusLabel1"
Me.toolStripStatusLabel1.Size = New System.Drawing.Size(38, 17)
Me.toolStripStatusLabel1.Text = "Ready"
'
' contextMenuStrip1
'
Me.contextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.menuItem1ToolStripMenuItem, Me.menuItem2ToolStripMenuItem})
Me.contextMenuStrip1.Name = "contextMenuStrip1"
Me.contextMenuStrip1.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.contextMenuStrip1.Size = New System.Drawing.Size(146, 48)
'
' menuItem1ToolStripMenuItem
'
Me.menuItem1ToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.subItemToolStripMenuItem})
Me.menuItem1ToolStripMenuItem.Name = "menuItem1ToolStripMenuItem"
Me.menuItem1ToolStripMenuItem.Size = New System.Drawing.Size(145, 22)
Me.menuItem1ToolStripMenuItem.Text = "Menu Item1"
'
' menuItem2ToolStripMenuItem
'
Me.menuItem2ToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.subItem2ToolStripMenuItem})
Me.menuItem2ToolStripMenuItem.Name = "menuItem2ToolStripMenuItem"
Me.menuItem2ToolStripMenuItem.Size = New System.Drawing.Size(145, 22)
Me.menuItem2ToolStripMenuItem.Text = "Menu Item 2"
'
' subItemToolStripMenuItem
'
Me.subItemToolStripMenuItem.Name = "subItemToolStripMenuItem"
Me.subItemToolStripMenuItem.Size = New System.Drawing.Size(152, 22)
Me.subItemToolStripMenuItem.Text = "Sub Item"
'
' subItem2ToolStripMenuItem
'
Me.subItem2ToolStripMenuItem.Name = "subItem2ToolStripMenuItem"
Me.subItem2ToolStripMenuItem.Size = New System.Drawing.Size(152, 22)
Me.subItem2ToolStripMenuItem.Text = "Sub Item2"
'
' showButton
'
Me.showButton.Location = New System.Drawing.Point(12, 180)
Me.showButton.Name = "showButton"
Me.showButton.Size = New System.Drawing.Size(75, 23)
Me.showButton.TabIndex = 2
Me.showButton.Text = "Show"
Me.showButton.UseVisualStyleBackColor = True
'
' hideButton
'
Me.hideButton.Location = New System.Drawing.Point(12, 209)
Me.hideButton.Name = "hideButton"
Me.hideButton.Size = New System.Drawing.Size(75, 23)
Me.hideButton.TabIndex = 3
Me.hideButton.Text = "Hide"
Me.hideButton.UseVisualStyleBackColor = True
'
' Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6F, 13F)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.Controls.Add(statusStrip1)
Me.Controls.Add(hideButton)
Me.Controls.Add(toolStrip1)
Me.Controls.Add(showButton)
Me.Name = "Form1"
Me.Text = "Form1"
Me.statusStrip1.ResumeLayout(False)
Me.statusStrip1.PerformLayout()
Me.contextMenuStrip1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
#End Region
End Class
Public Class Program
' The main entry point for the application.
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Application.Run(New Form1())
End Sub
End Class
설명
ToolStripDropDownItem은 ToolStripMenuItem, ToolStripDropDownButton 및 ToolStripSplitButton에 대한 추상 기본 클래스이며, 항목을 직접 호스팅하거나 드롭다운 컨테이너에서 추가 항목을 호스팅할 수 있습니다. DropDown 속성을 ToolStripDropDown로 설정하고 ToolStripDropDown의 Items 속성을 설정하여 이를 수행합니다. DropDownItems 속성을 통해 직접 이러한 드롭다운 항목에 액세스합니다.
생성자
ToolStripDropDownItem() |
ToolStripDropDownItem 클래스의 새 인스턴스를 초기화합니다. |
ToolStripDropDownItem(String, Image, EventHandler) |
지정된 표시 텍스트, 이미지 및 드롭다운 컨트롤을 클릭하면 수행될 작업을 사용하여 ToolStripDropDownItem 클래스의 새 인스턴스를 초기화합니다. |
ToolStripDropDownItem(String, Image, EventHandler, String) |
지정된 표시 텍스트, 이미지, 드롭다운 컨트롤을 클릭하면 수행될 작업 및 컨트롤 이름을 사용하여 ToolStripDropDownItem 클래스의 새 인스턴스를 초기화합니다. |
ToolStripDropDownItem(String, Image, ToolStripItem[]) |
지정된 표시 텍스트, 이미지 및 드롭다운 컨트롤에 포함된 ToolStripDropDownItem 컬렉션을 사용하여 ToolStripItem 클래스의 새 인스턴스를 초기화합니다. |
속성
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 |
항목의 배경색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
BackgroundImage |
항목에 표시할 배경 이미지를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
BackgroundImageLayout |
ToolStripItem에 사용되는 배경 이미지 레이아웃을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
BindingContext |
IBindableComponent에 대한 현재 위치 관리자의 컬렉션을 가져오거나 설정합니다. (다음에서 상속됨 BindableComponent) |
Bounds |
항목의 크기와 위치를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
CanRaiseEvents |
구성 요소가 이벤트를 발생시킬 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
CanSelect |
항목을 선택할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Command |
ToolStripItem의 Click 이벤트가 호출될 때 메서드가 호출될 을 가져오거나 설정합니다.ICommandExecute(Object) (다음에서 상속됨 ToolStripItem) |
CommandParameter |
속성에 할당된 에 ICommand 전달되는 매개 변수를 Command 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Container |
IContainer을 포함하는 Component를 가져옵니다. (다음에서 상속됨 Component) |
ContentRectangle |
배경 테두리를 덮어쓰기 않고 ToolStripItem 안에 텍스트와 아이콘 같은 내용을 배치할 수 있는 영역을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DataBindings |
이 IBindableComponent에 대한 데이터 바인딩 개체의 컬렉션을 가져옵니다. (다음에서 상속됨 BindableComponent) |
DefaultAutoToolTip |
기본값으로 정의된 ToolTip을 표시할지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultDisplayStyle |
ToolStripItem에 표시되는 대상을 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultMargin |
항목의 기본 여백을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultPadding |
항목의 내부 간격 특징을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DefaultSize |
항목의 기본 크기를 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DesignMode |
Component가 현재 디자인 모드인지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 Component) |
DismissWhenClicked |
ToolStripDropDown에 있는 항목을 클릭할 경우 해당 항목을 숨길지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
DisplayStyle |
ToolStripItem에 텍스트 및 이미지를 표시할지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Dock |
부모 컨트롤에 도킹된 ToolStripItem 테두리를 가져오거나 설정하고 ToolStripItem이 부모와 함께 크기 조정되는 방법을 확인합니다. (다음에서 상속됨 ToolStripItem) |
DoubleClickEnabled |
마우스를 두 번 클릭하여 ToolStripItem을 활성화할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
DropDown |
이 ToolStripDropDown을 클릭할 때 표시되는 ToolStripDropDownItem을 가져오거나 설정합니다. |
DropDownDirection |
부모 컨테이너에서 ToolStripDropDownItem이 나타나는 방향을 나타내는 값을 가져오거나 설정합니다. |
DropDownItems |
이 ToolStripDropDown과 연결된 ToolStripDropDownItem에서 항목 컬렉션을 가져옵니다. |
DropDownLocation |
ToolStripDropDownItem의 왼쪽 위 모퉁이에 대한 화면 좌표(픽셀)를 가져옵니다. |
Enabled |
ToolStripItem의 부모 컨트롤을 사용할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Events |
이 Component에 연결된 이벤트 처리기의 목록을 가져옵니다. (다음에서 상속됨 Component) |
Font |
항목에 표시되는 텍스트 글꼴을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ForeColor |
항목의 전경색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
HasDropDown |
DropDown에 대한 ToolStripDropDownItem이 만들어졌는지 여부를 나타내는 값을 가져오거나 설정합니다. |
HasDropDownItems |
ToolStripDropDownItem에 연결된 ToolStripDropDown 컨트롤이 있는지 여부를 나타내는 값을 가져옵니다. |
Height |
ToolStripItem의 높이(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Image |
ToolStripItem에 표시되는 이미지를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageAlign |
ToolStripItem의 이미지 맞춤을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageIndex |
항목에 표시되는 이미지의 인덱스 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageKey |
ImageList에 표시되는 ToolStripItem에서 이미지의 키 접근자를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageScaling |
ToolStripItem에 있는 이미지의 크기가 컨테이너에 맞게 자동으로 조정되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
ImageTransparentColor |
ToolStripItem 이미지에서 투명하게 처리할 색을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
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 |
ToolStripDropDownItem을 눌렀는지 여부를 나타내는 값을 가져옵니다. |
Renderer |
ToolStripDropDown, ToolStripDropDownButton 또는 ToolStripMenuItem 컨트롤을 클릭할 때 ToolStripSplitButton을 표시하는 컨트롤의 기본 기능을 제공합니다. (다음에서 상속됨 ToolStripItem) |
RightToLeft |
항목을 오른쪽에서 왼쪽으로 배치하고 텍스트를 오른쪽에서 왼쪽으로 쓸지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
RightToLeftAutoMirrorImage |
ToolStripItem 속성이 RightToLeft로 설정된 경우 Yes 이미지를 자동으로 미러링합니다. (다음에서 상속됨 ToolStripItem) |
Selected |
항목이 선택되었는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
ShowKeyboardCues |
바로 가기 키를 표시할지 아니면 숨길지 나타내는 값을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
Site |
Component의 ISite를 가져오거나 설정합니다. (다음에서 상속됨 Component) |
Size |
항목의 크기를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Tag |
항목에 대한 데이터를 포함하는 개체를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
Text |
항목에 표시되는 텍스트를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
TextAlign |
ToolStripLabel의 텍스트 맞춤을 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
TextDirection |
ToolStripItem에 사용된 텍스트의 방향을 가져옵니다. (다음에서 상속됨 ToolStripItem) |
TextImageRelation |
ToolStripItem 텍스트와 이미지의 서로 상대적인 위치를 가져오거나 설정합니다. (다음에서 상속됨 ToolStripItem) |
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 |
DisplayStyle가 변경될 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
Disposed |
Dispose() 메서드를 호출하여 구성 요소를 삭제할 때 발생합니다. (다음에서 상속됨 Component) |
DoubleClick |
항목을 마우스로 두 번 클릭하면 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragDrop |
사용자가 항목을 끌어 이 항목에 해당 항목을 놓도록 마우스를 놓을 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragEnter |
사용자가 이 항목의 클라이언트 영역으로 항목을 끌 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragLeave |
사용자가 항목을 끌어 마우스 포인터가 이 항목의 클라이언트 영역에서 벗어날 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DragOver |
사용자가 이 항목의 클라이언트 영역 위로 항목을 끌 때 발생합니다. (다음에서 상속됨 ToolStripItem) |
DropDownClosed |
ToolStripDropDown이 닫히면 발생합니다. |
DropDownItemClicked |
ToolStripDropDown을 클릭하면 발생합니다. |
DropDownOpened |
ToolStripDropDown이 열리면 발생합니다. |
DropDownOpening |
ToolStripDropDown이 열리고 있을 때 발생합니다. |
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 |
ToolStripDropDown, ToolStripDropDownButton 또는 ToolStripMenuItem 컨트롤을 클릭할 때 ToolStripSplitButton을 표시하는 컨트롤의 기본 기능을 제공합니다. (다음에서 상속됨 ToolStripItem) |
TextChanged |
Text 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
VisibleChanged |
Visible 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ToolStripItem) |
명시적 인터페이스 구현
IDropTarget.OnDragDrop(DragEventArgs) |
DragDrop 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
IDropTarget.OnDragEnter(DragEventArgs) |
DragEnter 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
IDropTarget.OnDragLeave(EventArgs) |
DragLeave 이벤트를 발생시킵니다. (다음에서 상속됨 ToolStripItem) |
IDropTarget.OnDragOver(DragEventArgs) |
|
적용 대상
추가 정보
.NET