ToolStripDropDown Sınıf
Tanım
Kullanıcının Kullanıcı bir tıkladığı zaman görüntülenen listeden tek bir öğe seçmesini sağlayan bir denetimi temsil eder ToolStripDropDownButton .Represents a control that allows the user to select a single item from a list that's displayed when the user clicks a ToolStripDropDownButton.
public ref class ToolStripDropDown : System::Windows::Forms::ToolStrip
public class ToolStripDropDown : System.Windows.Forms.ToolStrip
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class ToolStripDropDown : System.Windows.Forms.ToolStrip
type ToolStripDropDown = class
inherit ToolStrip
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type ToolStripDropDown = class
inherit ToolStrip
Public Class ToolStripDropDown
Inherits ToolStrip
- Devralma
- Türetilmiş
- Öznitelikler
Örnekler
Aşağıdaki kod örneği, ToolStripDropDown ToolStripDropDownButton formun ön plan rengini değiştiren üç düğmeli bir renk seçici yapmak için ve sınıflarını kullanır.The following code example uses the ToolStripDropDown and ToolStripDropDownButton classes to make a three-button color picker that changes the foreground color of the form.
// Declare the drop-down button and the items it will contain.
ToolStripDropDownButton^ dropDownButton1;
ToolStripDropDown^ dropDown;
ToolStripButton^ buttonRed;
ToolStripButton^ buttonBlue;
ToolStripButton^ buttonYellow;
void InitializeDropDownButton()
{
dropDownButton1 = gcnew ToolStripDropDownButton;
dropDown = gcnew ToolStripDropDown;
dropDownButton1->Text = "A";
// Set the drop-down on the DropDownButton.
dropDownButton1->DropDown = dropDown;
// Declare three buttons, set their forecolor and text,
// and add the buttons to the drop-down.
buttonRed = gcnew ToolStripButton;
buttonRed->ForeColor = Color::Red;
buttonRed->Text = "A";
buttonBlue = gcnew ToolStripButton;
buttonBlue->ForeColor = Color::Blue;
buttonBlue->Text = "A";
buttonYellow = gcnew ToolStripButton;
buttonYellow->ForeColor = Color::Yellow;
buttonYellow->Text = "A";
buttonBlue->Click += gcnew EventHandler(this,
&Form1::colorButtonsClick);
buttonRed->Click += gcnew EventHandler(this,
&Form1::colorButtonsClick);
buttonYellow->Click += gcnew EventHandler(this,
&Form1::colorButtonsClick);
array<ToolStripItem^>^ ToolStrips =
{buttonRed,buttonBlue,buttonYellow};
dropDown->Items->AddRange(ToolStrips);
toolStrip1->Items->Add(dropDownButton1);
}
// Handle the buttons' click event by setting the forecolor
// of the form to the forecolor of the button that is clicked.
void colorButtonsClick(Object^ sender, EventArgs^ e)
{
ToolStripButton^ senderButton = (ToolStripButton^) sender;
this->ForeColor = senderButton->ForeColor;
}
// internal:
// Declare the drop-down button and the items it will contain.
internal ToolStripDropDownButton dropDownButton1;
internal ToolStripDropDown dropDown;
internal ToolStripButton buttonRed;
internal ToolStripButton buttonBlue;
internal ToolStripButton buttonYellow;
private void InitializeDropDownButton()
{
dropDownButton1 = new ToolStripDropDownButton();
dropDown = new ToolStripDropDown();
dropDownButton1.Text = "A";
// Set the drop-down on the ToolStripDropDownButton.
dropDownButton1.DropDown = dropDown;
// Set the drop-down direction.
dropDownButton1.DropDownDirection = ToolStripDropDownDirection.Left;
// Do not show a drop-down arrow.
dropDownButton1.ShowDropDownArrow = false;
// Declare three buttons, set their foreground color and text,
// and add the buttons to the drop-down.
buttonRed = new ToolStripButton();
buttonRed.ForeColor = Color.Red;
buttonRed.Text = "A";
buttonBlue = new ToolStripButton();
buttonBlue.ForeColor = Color.Blue;
buttonBlue.Text = "A";
buttonYellow = new ToolStripButton();
buttonYellow.ForeColor = Color.Yellow;
buttonYellow.Text = "A";
buttonBlue.Click += new EventHandler(colorButtonsClick);
buttonRed.Click += new EventHandler(colorButtonsClick);
buttonYellow.Click += new EventHandler(colorButtonsClick);
dropDown.Items.AddRange(new ToolStripItem[]
{ buttonRed, buttonBlue, buttonYellow });
toolStrip1.Items.Add(dropDownButton1);
}
// Handle the buttons' click event by setting the foreground color of the
// form to the foreground color of the button that is clicked.
private void colorButtonsClick(object sender, EventArgs e)
{
ToolStripButton senderButton = (ToolStripButton)sender;
this.ForeColor = senderButton.ForeColor;
}
' Declare the drop-down button and the items it will contain.
Friend WithEvents dropDownButton1 As ToolStripDropDownButton
Friend WithEvents dropDown As ToolStripDropDown
Friend WithEvents buttonRed As ToolStripButton
Friend WithEvents buttonBlue As ToolStripButton
Friend WithEvents buttonYellow As ToolStripButton
Private Sub InitializeDropDownButton()
dropDownButton1 = New ToolStripDropDownButton()
dropDown = New ToolStripDropDown()
dropDownButton1.Text = "A"
' Set the drop-down on the ToolStripDropDownButton.
dropDownButton1.DropDown = dropDown
' Set the drop-down direction.
dropDownButton1.DropDownDirection = ToolStripDropDownDirection.Left
' Do not show a drop-down arrow.
dropDownButton1.ShowDropDownArrow = False
' Declare three buttons, set their foreground color and text,
' and add the buttons to the drop-down.
buttonRed = New ToolStripButton()
buttonRed.ForeColor = Color.Red
buttonRed.Text = "A"
buttonBlue = New ToolStripButton()
buttonBlue.ForeColor = Color.Blue
buttonBlue.Text = "A"
buttonYellow = New ToolStripButton()
buttonYellow.ForeColor = Color.Yellow
buttonYellow.Text = "A"
dropDown.Items.AddRange(New ToolStripItem() {buttonRed, buttonBlue, buttonYellow})
toolStrip1.Items.Add(dropDownButton1)
End Sub
' Handle the buttons' click event by setting the foreground color of the
' form to the foreground color of the button that is clicked.
Public Sub colorButtonsClick(ByVal sender As [Object], ByVal e As EventArgs) _
Handles buttonRed.Click, buttonBlue.Click, buttonYellow.Click
Dim senderButton As ToolStripButton = CType(sender, ToolStripButton)
Me.ForeColor = senderButton.ForeColor
End Sub
Aşağıdaki kod örneği, bir ToolStripControlHost olarak göstermek için kullanır ToolStripDropDown TreeView .The following code example uses ToolStripControlHost to show a ToolStripDropDown as a TreeView.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Security.Permissions;
public class Form1 : Form
{
public Form1()
{
MyTreeViewCombo treeCombo = new MyTreeViewCombo();
treeCombo.TreeView.Nodes.Add("one");
treeCombo.TreeView.Nodes.Add("two");
treeCombo.TreeView.Nodes.Add("three");
this.Controls.Add(treeCombo);
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
[SecurityPermissionAttribute(
SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
public class MyTreeViewCombo : ComboBox
{
ToolStripControlHost treeViewHost;
ToolStripDropDown dropDown;
public MyTreeViewCombo()
{
TreeView treeView = new TreeView();
treeView.BorderStyle = BorderStyle.None;
treeViewHost = new ToolStripControlHost(treeView);
dropDown = new ToolStripDropDown();
dropDown.Items.Add(treeViewHost);
}
public TreeView TreeView
{
get { return treeViewHost.Control as TreeView; }
}
private void ShowDropDown()
{
if (dropDown != null)
{
treeViewHost.Width = DropDownWidth;
treeViewHost.Height = DropDownHeight;
dropDown.Show(this, 0, this.Height);
}
}
private const int WM_USER = 0x0400,
WM_REFLECT = WM_USER + 0x1C00,
WM_COMMAND = 0x0111,
CBN_DROPDOWN = 7;
public static int HIWORD(int n)
{
return (n >> 16) & 0xffff;
}
protected override void WndProc(ref Message m)
{
if (m.Msg == (WM_REFLECT + WM_COMMAND))
{
if (HIWORD((int)m.WParam) == CBN_DROPDOWN)
{
ShowDropDown();
return;
}
}
base.WndProc(ref m);
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (dropDown != null)
{
dropDown.Dispose();
dropDown = null;
}
}
base.Dispose(disposing);
}
}
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Imports System.Security.Permissions
Public Class Form1
Inherits Form
Public Sub New()
Dim treeCombo As New MyTreeViewCombo()
treeCombo.MyTreeView.Nodes.Add("one")
treeCombo.MyTreeView.Nodes.Add("two")
treeCombo.MyTreeView.Nodes.Add("three")
Me.Controls.Add(treeCombo)
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Application.Run(New Form1())
End Sub
<SecurityPermissionAttribute( _
SecurityAction.LinkDemand, Flags:=SecurityPermissionFlag.UnmanagedCode)> _
Public Class MyTreeViewCombo
Inherits ComboBox
Private treeViewHost As ToolStripControlHost
Private Shadows dropDown As ToolStripDropDown
Public Sub New()
Dim treeView As New TreeView()
treeView.BorderStyle = BorderStyle.None
treeViewHost = New ToolStripControlHost(treeView)
dropDown = New ToolStripDropDown()
dropDown.Items.Add(treeViewHost)
End Sub
Public ReadOnly Property MyTreeView() As TreeView
Get
Return treeViewHost.Control '
End Get
End Property
Private Sub ShowDropDown()
If Not (dropDown Is Nothing) Then
treeViewHost.Width = DropDownWidth
treeViewHost.Height = DropDownHeight
dropDown.Show(Me, 0, Me.Height)
End If
End Sub
Private Const WM_USER As Integer = &H400
Private Const WM_REFLECT As Integer = WM_USER + &H1C00
Private Const WM_COMMAND As Integer = &H111
Private Const CBN_DROPDOWN As Integer = 7
Public Shared Function HIWORD(ByVal n As Integer) As Integer
Return (n >> 16) And &HFFFF
End Function
Protected Overrides Sub WndProc(ByRef m As Message)
If m.Msg = WM_REFLECT + WM_COMMAND Then
If HIWORD(CType(m.WParam, Integer)) = CBN_DROPDOWN Then
ShowDropDown()
Return
End If
End If
MyBase.WndProc(m)
End Sub
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (dropDown Is Nothing) Then
dropDown.Dispose()
dropDown = Nothing
End If
End If
MyBase.Dispose(disposing)
End Sub
End Class
End Class
Açıklamalar
ToolStripDropDownRenk seçici gibi seçeneklerin açılan listesini göstermek için öğesini kullanın.Use the ToolStripDropDown to display drop-down lists of options, such as a color picker.
Oluşturucular
ToolStripDropDown() |
ToolStripDropDown sınıfının yeni bir örneğini başlatır.Initializes a new instance of the ToolStripDropDown class. |
Alanlar
ScrollStateAutoScrolling |
Özelliğin değerini belirler AutoScroll .Determines the value of the AutoScroll property. (Devralındığı yer: ScrollableControl) |
ScrollStateFullDrag |
Kullanıcının tam pencere sürüklemeyi etkinleştirilip etkinleştirilmediğini belirler.Determines whether the user has enabled full window drag. (Devralındığı yer: ScrollableControl) |
ScrollStateHScrollVisible |
Özelliğin değerinin olarak ayarlanmış olup olmadığını belirler HScroll |
ScrollStateUserHasScrolled |
Kullanıcının denetimin içinden kaydırıp kaydırmayacağını belirler ScrollableControl .Determines whether the user had scrolled through the ScrollableControl control. (Devralındığı yer: ScrollableControl) |
ScrollStateVScrollVisible |
Özelliğin değerinin olarak ayarlanmış olup olmadığını belirler VScroll |
Özellikler
AccessibilityObject |
AccessibleObjectDenetime atanan öğesini alır.Gets the AccessibleObject assigned to the control. (Devralındığı yer: Control) |
AccessibleDefaultActionDescription |
Erişilebilirlik istemci uygulamaları tarafından kullanılacak denetimin varsayılan eylem açıklamasını alır veya ayarlar.Gets or sets the default action description of the control for use by accessibility client applications. (Devralındığı yer: Control) |
AccessibleDescription |
Erişilebilirlik istemci uygulamaları tarafından kullanılan denetimin açıklamasını alır veya ayarlar.Gets or sets the description of the control used by accessibility client applications. (Devralındığı yer: Control) |
AccessibleName |
Erişilebilirlik istemci uygulamaları tarafından kullanılan denetimin adını alır veya ayarlar.Gets or sets the name of the control used by accessibility client applications. (Devralındığı yer: Control) |
AccessibleRole |
Denetimin erişilebilir rolünü alır veya ayarlar.Gets or sets the accessible role of the control. (Devralındığı yer: Control) |
AllowDrop |
Sürükle ve bırak ile öğe yeniden sıralama işlemleri uyguladığınız olaylar aracılığıyla işlenip işlenmediğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether drag-and-drop and item reordering are handled through events that you implement. (Devralındığı yer: ToolStrip) |
AllowItemReorder |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
AllowMerge |
Birden çok MenuStrip , ToolStripDropDownMenu , ToolStripMenuItem , ve diğer türlerin birleştirilebilir olduğunu gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether multiple MenuStrip, ToolStripDropDownMenu, ToolStripMenuItem, and other types can be combined. (Devralındığı yer: ToolStrip) |
AllowTransparency |
Formun değiştirilip ayarlanamayacağını gösteren bir değer alır veya ayarlar Opacity .Gets or sets a value indicating whether the Opacity of the form can be adjusted. |
Anchor |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
AutoClose |
ToolStripDropDownEtkinleştirmenin kaybolması durumunda denetimin otomatik olarak kapatılıp kapanmayacağını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the ToolStripDropDown control should automatically close when it has lost activation. |
AutoScroll |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
AutoScrollMargin |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
AutoScrollMinSize |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
AutoScrollOffset |
Bu denetimin ' de kaydırılacağı yeri alır veya ayarlar ScrollControlIntoView(Control) .Gets or sets where this control is scrolled to in ScrollControlIntoView(Control). (Devralındığı yer: Control) |
AutoScrollPosition |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
AutoSize |
ToolStripDropDownForm yeniden boyutlandırılırken boyutunun otomatik olarak görüntülenip görüntülenmeyeceğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the ToolStripDropDown automatically adjusts its size when the form is resized. |
BackColor |
İçin arka plan rengini alır veya ayarlar ToolStrip .Gets or sets the background color for the ToolStrip. (Devralındığı yer: ToolStrip) |
BackgroundImage |
Denetimde görüntülenen arka plan resmini alır veya ayarlar.Gets or sets the background image displayed in the control. (Devralındığı yer: Control) |
BackgroundImageLayout |
Numaralandırmada tanımlanan arka plan resim yerleşimini alır veya ayarlar ImageLayout .Gets or sets the background image layout as defined in the ImageLayout enumeration. (Devralındığı yer: Control) |
BindingContext |
İçin bağlama bağlamını alır veya ayarlar ToolStrip .Gets or sets the binding context for the ToolStrip. (Devralındığı yer: ToolStrip) |
Bottom |
Denetimin alt kenarı ve kapsayıcısının istemci alanının üst kenarı arasındaki mesafeyi piksel cinsinden alır.Gets the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area. (Devralındığı yer: Control) |
Bounds |
Üst denetime göre, istemci olmayan öğeleri de dahil olmak üzere denetimin boyutunu ve konumunu piksel cinsinden alır veya ayarlar.Gets or sets the size and location of the control including its nonclient elements, in pixels, relative to the parent control. (Devralındığı yer: Control) |
CanEnableIme |
ImeModeIME desteğini etkinleştirmek için özelliğin etkin bir değere ayarlanamayacağını gösteren bir değer alır.Gets a value indicating whether the ImeMode property can be set to an active value, to enable IME support. (Devralındığı yer: Control) |
CanFocus |
Denetimin odak alıp alamayacağını gösteren bir değer alır.Gets a value indicating whether the control can receive focus. (Devralındığı yer: Control) |
CanOverflow |
İçindeki öğelerin bir ToolStripDropDown taşma menüsüne gönderilip gönderilemeyeceğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the items in a ToolStripDropDown can be sent to an overflow menu. |
CanRaiseEvents |
Denetimde olayların başlatılıp görünmeyeceğini belirler.Determines if events can be raised on the control. (Devralındığı yer: Control) |
CanSelect |
Denetimin seçilip seçilemeyeceğini gösteren bir değer alır.Gets a value indicating whether the control can be selected. (Devralındığı yer: Control) |
Capture |
Denetimin fareyi yakalamadığını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the control has captured the mouse. (Devralındığı yer: Control) |
CausesValidation |
ToolStripOdağı aldığında doğrulama gerektiren denetimlerde doğrulamanın gerçekleştirilip gerçekleştirilmeyeceğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the ToolStrip causes validation to be performed on any controls that require validation when it receives focus. (Devralındığı yer: ToolStrip) |
ClientRectangle |
Denetimin istemci alanını temsil eden dikdörtgeni alır.Gets the rectangle that represents the client area of the control. (Devralındığı yer: Control) |
ClientSize |
Denetimin istemci alanının yüksekliğini ve genişliğini alır veya ayarlar.Gets or sets the height and width of the client area of the control. (Devralındığı yer: Control) |
CompanyName |
Denetimi içeren uygulamanın veya oluşturucunun adını alır.Gets the name of the company or creator of the application containing the control. (Devralındığı yer: Control) |
Container |
Öğesini içeren öğesini alır IContainer Component .Gets the IContainer that contains the Component. (Devralındığı yer: Component) |
ContainsFocus |
Denetimin veya alt denetimlerinden birinin şu anda giriş odağına sahip olup olmadığını gösteren bir değer alır.Gets a value indicating whether the control, or one of its child controls, currently has the input focus. (Devralındığı yer: Control) |
ContextMenu |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
ContextMenu |
Denetimle ilişkili kısayol menüsünü alır veya ayarlar.Gets or sets the shortcut menu associated with the control. (Devralındığı yer: Control) |
ContextMenuStrip |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
Controls |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
Created |
Denetimin oluşturulup oluşturulmayacağını gösteren bir değer alır.Gets a value indicating whether the control has been created. (Devralındığı yer: Control) |
CreateParams |
Yeni bir pencerenin parametrelerini alır.Gets parameters of a new window. |
Cursor |
Fare işaretçisi üzerindeyken görüntülenen imleci alır veya ayarlar ToolStrip .Gets or sets the cursor that is displayed when the mouse pointer is over the ToolStrip. (Devralındığı yer: ToolStrip) |
DataBindings |
Denetim için veri bağlamalarını alır.Gets the data bindings for the control. (Devralındığı yer: Control) |
DefaultCursor |
Denetim için varsayılan imleci alır veya ayarlar.Gets or sets the default cursor for the control. (Devralındığı yer: Control) |
DefaultDock |
ToolStripKapsayıcısına hangi kenarlıkların yerleştirildiğini gösteren yerleştirme konumunu alır.Gets the docking location of the ToolStrip, indicating which borders are docked to the container. |
DefaultDropDownDirection |
Öğesine göre görüntülenen yönü alır veya ayarlar ToolStripDropDown ToolStrip .Gets or sets the direction in which the ToolStripDropDown is displayed relative to the ToolStrip. |
DefaultGripMargin |
Boyutlandırma tutamacı ve kenarlarının kenarları arasındaki varsayılan aralığı piksel cinsinden alır ToolStrip .Gets the default spacing, in pixels, between the sizing grip and the edges of the ToolStrip. (Devralındığı yer: ToolStrip) |
DefaultImeMode |
Denetim tarafından desteklenen varsayılan giriş Yöntemi Düzenleyicisi (IME) modunu alır.Gets the default Input Method Editor (IME) mode supported by the control. (Devralındığı yer: Control) |
DefaultMargin |
Ve arasındaki aralığı piksel cinsinden alır ToolStrip ToolStripContainer .Gets the spacing, in pixels, between the ToolStrip and the ToolStripContainer. (Devralındığı yer: ToolStrip) |
DefaultMaximumSize |
Bir denetimin varsayılan en büyük boyutu olarak belirtilen uzunluğu ve yüksekliği piksel cinsinden alır.Gets the length and height, in pixels, that is specified as the default maximum size of a control. (Devralındığı yer: Control) |
DefaultMinimumSize |
Bir denetimin varsayılan en küçük boyutu olarak belirtilen uzunluğu ve yüksekliği piksel cinsinden alır.Gets the length and height, in pixels, that is specified as the default minimum size of a control. (Devralındığı yer: Control) |
DefaultPadding |
İçeriğinin piksel cinsinden iç aralığını alır ToolStrip .Gets the internal spacing, in pixels, of the contents of a ToolStrip. |
DefaultShowItemToolTips |
Araç Ipuçlarının varsayılan olarak gösterilip gösterilmeyeceğini gösteren bir değer alır ToolStripDropDown .Gets a value indicating whether ToolTips are shown for the ToolStripDropDown by default. |
DefaultSize |
Varsayılan boyutunu alır ToolStrip .Gets the default size of the ToolStrip. (Devralındığı yer: ToolStrip) |
DesignMode |
Şu anda Tasarım modunda olup olmadığını gösteren bir değer alır Component .Gets a value that indicates whether the Component is currently in design mode. (Devralındığı yer: Component) |
DeviceDpi |
Denetimin Şu anda görüntülendiği görüntü cihazının DPı değerini alır.Gets the DPI value for the display device where the control is currently being displayed. (Devralındığı yer: Control) |
DisplayedItems |
Üzerinde ToolStrip otomatik olarak eklenen öğeler de dahil olmak üzere, üzerinde görüntülenmekte olan öğelerin alt kümesini alır ToolStrip .Gets the subset of items that are currently displayed on the ToolStrip, including items that are automatically added into the ToolStrip. (Devralındığı yer: ToolStrip) |
DisplayRectangle |
Geçerli görüntüleme dikdörtgenini alır.Retrieves the current display rectangle. (Devralındığı yer: ToolStrip) |
Disposing |
Temel sınıfın elden atılıyor sürecinde olup olmadığını gösteren bir değer alır Control .Gets a value indicating whether the base Control class is in the process of disposing. (Devralındığı yer: Control) |
Dock |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
DockPadding |
Denetimin tüm kenarları için dock Padding ayarlarını alır.Gets the dock padding settings for all edges of the control. (Devralındığı yer: ScrollableControl) |
DoubleBuffered |
Bu denetimin, titreşimi azaltmak veya engellemek için ikincil arabellek kullanarak yüzeyini yeniden çizmesinin gerekip gerekmediğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker. (Devralındığı yer: Control) |
DropShadowEnabled |
Görüntülendiğinde üç boyutlu bir gölge efektinin görünüp başlatılmayacağını gösteren bir değer alır veya ayarlar ToolStripDropDown .Gets or sets a value indicating whether a three-dimensional shadow effect appears when the ToolStripDropDown is displayed. |
Enabled |
Denetimin kullanıcı etkileşimine yanıt veremeyeceğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the control can respond to user interaction. (Devralındığı yer: Control) |
Events |
Bu öğesine eklenen olay işleyicilerinin listesini alır Component .Gets the list of event handlers that are attached to this Component. (Devralındığı yer: Component) |
Focused |
Denetimin giriş odağına sahip olup olmadığını gösteren bir değer alır.Gets a value indicating whether the control has input focus. (Devralındığı yer: Control) |
Font |
Üzerinde görüntülenen metnin yazı tipini alır veya ayarlar ToolStripDropDown .Gets or sets the font of the text displayed on the ToolStripDropDown. |
FontHeight |
Denetimin yazı tipinin yüksekliğini alır veya ayarlar.Gets or sets the height of the font of the control. (Devralındığı yer: Control) |
ForeColor |
Öğesinin ön plan rengini alır veya ayarlar ToolStrip .Gets or sets the foreground color of the ToolStrip. (Devralındığı yer: ToolStrip) |
GripDisplayStyle |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
GripMargin |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
GripRectangle |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
GripStyle |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
Handle |
Denetimin bağlandığı pencere tanıtıcısını alır.Gets the window handle that the control is bound to. (Devralındığı yer: Control) |
HasChildren |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
Height |
Denetimin yüksekliğini alır veya ayarlar.Gets or sets the height of the control. (Devralındığı yer: Control) |
HorizontalScroll |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
HScroll |
Yatay kaydırma çubuğunun görünür olup olmadığını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the horizontal scroll bar is visible. (Devralındığı yer: ScrollableControl) |
ImageList |
Bir öğede görüntülenen görüntüyü içeren görüntü listesini alır veya ayarlar ToolStrip .Gets or sets the image list that contains the image displayed on a ToolStrip item. (Devralındığı yer: ToolStrip) |
ImageScalingSize |
Üzerinde kullanılan bir görüntünün boyutunu piksel cinsinden alır veya ayarlar ToolStrip .Gets or sets the size, in pixels, of an image used on a ToolStrip. (Devralındığı yer: ToolStrip) |
ImeMode |
Denetimin Giriş Yöntemi Düzenleyicisi (IME) modunu alır veya ayarlar.Gets or sets the Input Method Editor (IME) mode of the control. (Devralındığı yer: Control) |
ImeModeBase |
Bir denetimin IME modunu alır veya ayarlar.Gets or sets the IME mode of a control. (Devralındığı yer: Control) |
InvokeRequired |
Çağıran, denetimin üzerinde oluşturulduğundan farklı bir iş parçacığında olduğundan, çağıranın Yöntem çağrısı yaparken Invoke metodunu çağırıp çağırmayacağını belirten bir değer alır.Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on. (Devralındığı yer: Control) |
IsAccessible |
Denetimin erişilebilirlik uygulamalarına görünür olup olmadığını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the control is visible to accessibility applications. (Devralındığı yer: Control) |
IsAutoGenerated |
Bunun otomatik olarak oluşturulup oluşturulmayacağını gösteren bir değer alır ToolStripDropDown .Gets a value indicating whether this ToolStripDropDown was automatically generated. |
IsCurrentlyDragging |
Kullanıcının şu anda bir öğesinden diğerine taşınmasını gösteren bir değer alır ToolStrip ToolStripContainer .Gets a value indicating whether the user is currently moving the ToolStrip from one ToolStripContainer to another. (Devralındığı yer: ToolStrip) |
IsDisposed |
Denetimin atılıp atılmadığını gösteren bir değer alır.Gets a value indicating whether the control has been disposed of. (Devralındığı yer: Control) |
IsDropDown |
Bir denetimin olup olmadığını gösteren bir değer alır ToolStrip ToolStripDropDown .Gets a value indicating whether a ToolStrip is a ToolStripDropDown control. (Devralındığı yer: ToolStrip) |
IsHandleCreated |
Denetimin kendisiyle ilişkili bir tutamacı olup olmadığını gösteren bir değer alır.Gets a value indicating whether the control has a handle associated with it. (Devralındığı yer: Control) |
IsMirrored |
Denetimin yansıtıldığını gösteren bir değer alır.Gets a value indicating whether the control is mirrored. (Devralındığı yer: Control) |
Items |
Öğesine ait olan tüm öğeleri alır ToolStrip .Gets all the items that belong to a ToolStrip. (Devralındığı yer: ToolStrip) |
LayoutEngine |
Düzen altyapısı arabirimi tarafından döndürülen önbelleğe alınmış öğesine bir başvuru geçirir LayoutEngine .Passes a reference to the cached LayoutEngine returned by the layout engine interface. (Devralındığı yer: ToolStrip) |
LayoutSettings |
Düzen şeması özelliklerini alır veya ayarlar.Gets or sets layout scheme characteristics. (Devralındığı yer: ToolStrip) |
LayoutStyle |
Öğe koleksiyonunu nasıl düzenledini gösteren bir değer alır veya ayarlar ToolStrip .Gets or sets a value indicating how the ToolStrip lays out the items collection. (Devralındığı yer: ToolStrip) |
Left |
Denetimin sol kenarı ve kapsayıcısının istemci alanının sol kenarı arasındaki mesafeyi piksel cinsinden alır veya ayarlar.Gets or sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area. (Devralındığı yer: Control) |
Location |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
Margin |
Denetimler arasındaki boşluğu alır veya ayarlar.Gets or sets the space between controls. (Devralındığı yer: Control) |
MaximumSize |
Belirtebileceğiniz üst sınır olan boyutu alır veya ayarlar GetPreferredSize(Size) .Gets or sets the size that is the upper limit that GetPreferredSize(Size) can specify. (Devralındığı yer: Control) |
MaxItemSize |
' Nin en büyük yüksekliğini ve genişliğini piksel cinsinden alır ToolStripDropDown .Gets the maximum height and width, in pixels, of the ToolStripDropDown. |
MinimumSize |
Belirtebileceğiniz alt sınırın boyutunu alır veya ayarlar GetPreferredSize(Size) .Gets or sets the size that is the lower limit that GetPreferredSize(Size) can specify. (Devralındığı yer: Control) |
Name |
Denetimin adını alır veya ayarlar.Gets or sets the name of the control. (Devralındığı yer: Control) |
Opacity |
Formun opaklığını belirler.Determines the opacity of the form. |
Orientation |
Yönünü alır ToolStripPanel .Gets the orientation of the ToolStripPanel. (Devralındığı yer: ToolStrip) |
OverflowButton |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
OwnerItem |
Bunun sahibi olan öğesini alır veya ayarlar ToolStripItem ToolStripDropDown .Gets or sets the ToolStripItem that is the owner of this ToolStripDropDown. |
Padding |
Denetim içindeki doldurmayı alır veya ayarlar.Gets or sets padding within the control. (Devralındığı yer: Control) |
Parent |
Denetimin üst kapsayıcısını alır veya ayarlar.Gets or sets the parent container of the control. (Devralındığı yer: Control) |
PreferredSize |
Denetimin sığdırabilecek dikdörtgen bir alanın boyutunu alır.Gets the size of a rectangular area into which the control can fit. (Devralındığı yer: Control) |
ProductName |
Denetimi içeren derlemenin ürün adını alır.Gets the product name of the assembly containing the control. (Devralındığı yer: Control) |
ProductVersion |
Denetimi içeren derlemenin sürümünü alır.Gets the version of the assembly containing the control. (Devralındığı yer: Control) |
RecreatingHandle |
Denetimin Şu anda tanıtıcısını yeniden oluşturup oluşturmadığını gösteren bir değer alır.Gets a value indicating whether the control is currently re-creating its handle. (Devralındığı yer: Control) |
Region |
İle ilişkili pencere bölgesini alır veya ayarlar ToolStripDropDown .Gets or sets the window region associated with the ToolStripDropDown. |
Renderer |
ToolStripRendererA 'nın görünümünü özelleştirmek için kullanılan bir alır veya ayarlar ToolStrip .Gets or sets a ToolStripRenderer used to customize the look and feel of a ToolStrip. (Devralındığı yer: ToolStrip) |
RenderMode |
Hangi görsel stillerin uygulanacağını gösteren bir değer alır veya ayarlar ToolStrip .Gets or sets a value that indicates which visual styles will be applied to the ToolStrip. (Devralındığı yer: ToolStrip) |
RenderRightToLeft |
Kullanımdan kalktı.
Bu özellik artık kullanımdan kalkmıştır.This property is now obsolete. (Devralındığı yer: Control) |
ResizeRedraw |
Yeniden boyutlandırılırken denetimin kendisini yeniden gösterip göstermediğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the control redraws itself when resized. (Devralındığı yer: Control) |
Right |
Denetimin sağ kenarıyla kapsayıcısının istemci alanının sol kenarı arasındaki mesafeyi piksel cinsinden alır.Gets the distance, in pixels, between the right edge of the control and the left edge of its container's client area. (Devralındığı yer: Control) |
RightToLeft |
Sağdan sola yazı tiplerini kullanarak, denetimin öğelerinin yerel ayarları destekleyecek şekilde hizalanıp Hizalanmadığını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts. |
ScaleChildren |
Alt denetimlerin ölçeklendirilmesini belirleyen bir değer alır.Gets a value that determines the scaling of child controls. (Devralındığı yer: Control) |
ShowFocusCues |
Denetimin odak dikdörtgeni gösterip göstermeyeceğini gösteren bir değer alır.Gets a value indicating whether the control should display focus rectangles. (Devralındığı yer: Control) |
ShowItemToolTips |
Araç Ipuçlarının öğelerde görüntülenip görüntülenmeyeceğini gösteren bir değer alır veya ayarlar ToolStrip .Gets or sets a value indicating whether ToolTips are to be displayed on ToolStrip items. (Devralındığı yer: ToolStrip) |
ShowKeyboardCues |
Kullanıcı arabiriminin klavye hızlandırıcılarını göstermek veya gizlemek için uygun durumda olup olmadığını gösteren bir değer alır.Gets a value indicating whether the user interface is in the appropriate state to show or hide keyboard accelerators. (Devralındığı yer: Control) |
Site |
Denetimin sitesini alır veya ayarlar.Gets or sets the site of the control. (Devralındığı yer: Control) |
Size |
Denetimin yüksekliğini ve genişliğini alır veya ayarlar.Gets or sets the height and width of the control. (Devralındığı yer: Control) |
Stretch |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
TabIndex |
Bu özellik bu sınıfla ilgili değildir.This property is not relevant to this class. |
TabStop |
Kullanıcının TAB tuşunu kullanarak odağı bir öğeye verip veremeyeceğini gösteren bir değer alır veya ayarlar ToolStrip .Gets or sets a value indicating whether the user can give the focus to an item in the ToolStrip using the TAB key. (Devralındığı yer: ToolStrip) |
Tag |
Denetimle ilgili verileri içeren nesneyi alır veya ayarlar.Gets or sets the object that contains data about the control. (Devralındığı yer: Control) |
Text |
Bu denetimle ilişkili metni alır veya ayarlar.Gets or sets the text associated with this control. (Devralındığı yer: Control) |
TextDirection |
Öğe üzerinde metnin çizileceği yönü belirtir.Specifies the direction in which to draw the text on the item. |
Top |
Denetimin üst kenarı ve kapsayıcısının istemci alanının üst kenarı arasındaki mesafeyi piksel cinsinden alır veya ayarlar.Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area. (Devralındığı yer: Control) |
TopLevel |
Üst düzey bir denetim olup olmadığını gösteren bir değer alır veya ayarlar ToolStripDropDown .Gets or sets a value indicating whether the ToolStripDropDown is a top-level control. |
TopLevelControl |
Başka bir Windows Forms denetimi tarafından üst öğe olmayan üst denetimi alır.Gets the parent control that is not parented by another Windows Forms control. Genellikle, bu Form denetimin içerdiği en dıştaki bir değer.Typically, this is the outermost Form that the control is contained in. (Devralındığı yer: Control) |
TopMost |
Formun en üst form olarak görüntülenip görüntülenmeyeceğini gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the form should be displayed as a topmost form. |
UseWaitCursor |
Bekleme imlecinizin geçerli denetim ve tüm alt denetimler için kullanılıp kullanılmayacağını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether to use the wait cursor for the current control and all child controls. (Devralındığı yer: Control) |
VerticalScroll |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: ToolStrip) |
Visible |
Görünür mü yoksa gizli mi olduğunu gösteren bir değer alır veya ayarlar ToolStripDropDown .Gets or sets a value indicating whether the ToolStripDropDown is visible or hidden. |
VScroll |
Dikey kaydırma çubuğunun görünür olup olmadığını gösteren bir değer alır veya ayarlar.Gets or sets a value indicating whether the vertical scroll bar is visible. (Devralındığı yer: ScrollableControl) |
Width |
Denetimin genişliğini alır veya ayarlar.Gets or sets the width of the control. (Devralındığı yer: Control) |
WindowTarget |
Bu özellik bu sınıf için uygun değildir.This property is not relevant for this class. (Devralındığı yer: Control) |
Yöntemler
AccessibilityNotifyClients(AccessibleEvents, Int32) |
Belirtilen alt denetim için belirtilen erişilebilirlik istemci uygulamalarına bildirir AccessibleEvents .Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control. (Devralındığı yer: Control) |
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32) |
Belirtilen alt denetim için belirtilen erişilebilirlik istemci uygulamalarına bildirir AccessibleEvents .Notifies the accessibility client applications of the specified AccessibleEvents for the specified child control . (Devralındığı yer: Control) |
AdjustFormScrollbars(Boolean) |
Kapsayıcıdaki kaydırma çubuklarını geçerli denetim konumlarına ve şu anda seçili denetime göre ayarlar.Adjusts the scroll bars on the container based on the current control positions and the control currently selected. (Devralındığı yer: ScrollableControl) |
BeginInvoke(Delegate) |
Belirtilen temsilciyi, denetimin temel alınan tutamacının oluşturulduğu iş parçacığında zaman uyumsuz olarak yürütür.Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on. (Devralındığı yer: Control) |
BeginInvoke(Delegate, Object[]) |
Belirtilen temsilciyi, denetimin temel alınan tutamacının oluşturulduğu iş parçacığında belirtilen bağımsız değişkenlerle zaman uyumsuz olarak yürütür.Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on. (Devralındığı yer: Control) |
BringToFront() |
Denetimi z düzeninin önüne getirir.Brings the control to the front of the z-order. (Devralındığı yer: Control) |
Close() |
Denetimi kapatır ToolStripDropDown .Closes the ToolStripDropDown control. |
Close(ToolStripDropDownCloseReason) |
ToolStripDropDownBelirtilen nedenden dolayı denetimi kapatır.Closes the ToolStripDropDown control for the specified reason. |
Contains(Control) |
Belirtilen denetimin denetimin bir alt öğesi olup olmadığını gösteren bir değer alır.Retrieves a value indicating whether the specified control is a child of the control. (Devralındığı yer: Control) |
CreateAccessibilityInstance() |
İçin yeni bir erişilebilirlik nesnesi oluşturur ToolStripDropDown .Creates a new accessibility object for the ToolStripDropDown. |
CreateControl() |
Tanıtıcının oluşturulması ve görünür alt denetimler de dahil olmak üzere, görünür denetimin oluşturulmasına zorlar.Forces the creation of the visible control, including the creation of the handle and any visible child controls. (Devralındığı yer: Control) |
CreateControlsInstance() |
Denetim için denetim koleksiyonunun yeni bir örneğini oluşturur.Creates a new instance of the control collection for the control. (Devralındığı yer: ToolStrip) |
CreateDefaultItem(String, Image, EventHandler) |
ToolStripItemYeni bir örnekte belirtilen metin, resim ve olay işleyicisiyle bir varsayılan değer oluşturur ToolStrip .Creates a default ToolStripItem with the specified text, image, and event handler on a new ToolStrip instance. (Devralındığı yer: ToolStrip) |
CreateGraphics() |
GraphicsDenetimi için oluşturur.Creates the Graphics for the control. (Devralındığı yer: Control) |
CreateHandle() |
Denetim için bir tanıtıcı oluşturur.Creates a handle for the control. |
CreateLayoutSettings(ToolStripLayoutStyle) |
Öğesine çeşitli düzen seçenekleri uygular ToolStripDropDown .Applies various layout options to the ToolStripDropDown. |
CreateObjRef(Type) |
Uzak bir nesneyle iletişim kurmak için kullanılan bir ara sunucu oluşturmak için gereken tüm bilgileri içeren bir nesne oluşturur.Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Devralındığı yer: MarshalByRefObject) |
DefWndProc(Message) |
Belirtilen iletiyi varsayılan pencere yordamına gönderir.Sends the specified message to the default window procedure. (Devralındığı yer: Control) |
DestroyHandle() |
Denetimle ilişkili tanıtıcıyı yok eder.Destroys the handle associated with the control. (Devralındığı yer: Control) |
Dispose() |
Component tarafından kullanılan tüm kaynakları serbest bırakır.Releases all resources used by the Component. (Devralındığı yer: Component) |
Dispose(Boolean) |
ToolStripDropDown tarafından kullanılan yönetilmeyen kaynakları serbest bırakır ve yönetilen kaynakları isteğe bağlı olarak serbest bırakır.Releases the unmanaged resources used by the ToolStripDropDown and optionally releases the managed resources. |
DoDragDrop(Object, DragDropEffects) |
Bir sürükle ve bırak işlemi başlatır.Begins a drag-and-drop operation. (Devralındığı yer: Control) |
DrawToBitmap(Bitmap, Rectangle) |
Belirtilen bit eşlemde işlemeyi destekler.Supports rendering to the specified bitmap. (Devralındığı yer: Control) |
EndInvoke(IAsyncResult) |
Geçti ile temsil edilen zaman uyumsuz işlemin dönüş değerini alır IAsyncResult .Retrieves the return value of the asynchronous operation represented by the IAsyncResult passed. (Devralındığı yer: Control) |
Equals(Object) |
Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler.Determines whether the specified object is equal to the current object. (Devralındığı yer: Object) |
FindForm() |
Denetimin açık olduğu formu alır.Retrieves the form that the control is on. (Devralındığı yer: Control) |
Focus() |
Giriş odağını denetime ayarlar.Sets input focus to the control. (Devralındığı yer: Control) |
GetAccessibilityObjectById(Int32) |
Belirtilen öğesini alır AccessibleObject .Retrieves the specified AccessibleObject. (Devralındığı yer: Control) |
GetAutoSizeMode() |
Özelliği etkinleştirildiğinde bir denetimin nasıl davranacağını gösteren bir değer alır AutoSize .Retrieves a value indicating how a control will behave when its AutoSize property is enabled. (Devralındığı yer: Control) |
GetChildAtPoint(Point) |
Bu yöntem bu sınıf için uygun değildir.This method is not relevant for this class. (Devralındığı yer: ToolStrip) |
GetChildAtPoint(Point, GetChildAtPointSkip) |
Bu yöntem bu sınıf için uygun değildir.This method is not relevant for this class. (Devralındığı yer: ToolStrip) |
GetContainerControl() |
ContainerControlDenetimin üst denetim zincirinin bir sonraki bölümünü döndürür.Returns the next ContainerControl up the control's chain of parent controls. (Devralındığı yer: Control) |
GetHashCode() |
Varsayılan karma işlevi olarak işlev görür.Serves as the default hash function. (Devralındığı yer: Object) |
GetItemAt(Int32, Int32) |
İstemci alanının belirtilen x ve y koordinatları üzerinde bulunan öğeyi döndürür ToolStrip .Returns the item located at the specified x- and y-coordinates of the ToolStrip client area. (Devralındığı yer: ToolStrip) |
GetItemAt(Point) |
Öğesinin istemci alanındaki belirtilen noktada bulunan öğeyi döndürür ToolStrip .Returns the item located at the specified point in the client area of the ToolStrip. (Devralındığı yer: ToolStrip) |
GetLifetimeService() |
Kullanımdan kalktı.
Bu örnek için ömür ilkesini denetleyen geçerli ömür hizmeti nesnesini alır.Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Devralındığı yer: MarshalByRefObject) |
GetNextControl(Control, Boolean) |
Sonraki denetimi alt denetimlerin sekme sırasıyla ileri veya geri alır.Retrieves the next control forward or back in the tab order of child controls. (Devralındığı yer: Control) |
GetNextItem(ToolStripItem, ArrowDirection) |
ToolStripItemBelirtilen başvuru noktasından ileri alır ve belirtilen yöne taşınır.Retrieves the next ToolStripItem from the specified reference point and moving in the specified direction. (Devralındığı yer: ToolStrip) |
GetPreferredSize(Size) |
Bir denetimin uydurtabileceği dikdörtgen bir alanın boyutunu alır.Retrieves the size of a rectangular area into which a control can be fitted. (Devralındığı yer: Control) |
GetScaledBounds(Rectangle, SizeF, BoundsSpecified) |
Denetimin ölçeklendiği sınırları alır.Retrieves the bounds within which the control is scaled. (Devralındığı yer: Control) |
GetScrollState(Int32) |
Belirtilen bayrağın ayarlanmış olup olmadığını belirler.Determines whether the specified flag has been set. (Devralındığı yer: ScrollableControl) |
GetService(Type) |
Veya tarafından belirtilen bir hizmeti temsil eden bir nesne döndürür Component Container .Returns an object that represents a service provided by the Component or by its Container. (Devralındığı yer: Component) |
GetStyle(ControlStyles) |
Denetim için belirtilen denetim stili bit değerini alır.Retrieves the value of the specified control style bit for the control. (Devralındığı yer: Control) |
GetTopLevel() |
Denetimin en üst düzey denetim olup olmadığını belirler.Determines if the control is a top-level control. (Devralındığı yer: Control) |
GetType() |
TypeGeçerli örneği alır.Gets the Type of the current instance. (Devralındığı yer: Object) |
Hide() |
Kullanıcının denetimini gizleme.Conceals the control from the user. (Devralındığı yer: Control) |
InitializeLifetimeService() |
Kullanımdan kalktı.
Bu örnek için ömür ilkesini denetlemek üzere bir ömür hizmeti nesnesi alır.Obtains a lifetime service object to control the lifetime policy for this instance. (Devralındığı yer: MarshalByRefObject) |
InitLayout() |
Denetim başka bir kapsayıcıya eklendikten sonra çağırılır.Called after the control has been added to another container. (Devralındığı yer: Control) |
Invalidate() |
Denetimin tüm yüzeyini geçersiz kılar ve denetimin yeniden çizilmesini sağlar.Invalidates the entire surface of the control and causes the control to be redrawn. (Devralındığı yer: Control) |
Invalidate(Boolean) |
Denetimin belirli bir bölgesini geçersiz kılar ve bir Paint iletisinin denetime gönderilmesine neden olur.Invalidates a specific region of the control and causes a paint message to be sent to the control. İsteğe bağlı olarak, denetime atanan alt denetimleri geçersiz kılar.Optionally, invalidates the child controls assigned to the control. (Devralındığı yer: Control) |
Invalidate(Rectangle) |
Denetimin belirtilen bölgesini geçersiz kılar (Bu, bir sonraki boyama işleminde yeniden izlenecek alan olan denetimin güncelleştirme bölgesine ekler) ve bir Paint iletisinin denetime gönderilmesine neden olur.Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. (Devralındığı yer: Control) |
Invalidate(Rectangle, Boolean) |
Denetimin belirtilen bölgesini geçersiz kılar (Bu, bir sonraki boyama işleminde yeniden izlenecek alan olan denetimin güncelleştirme bölgesine ekler) ve bir Paint iletisinin denetime gönderilmesine neden olur.Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. İsteğe bağlı olarak, denetime atanan alt denetimleri geçersiz kılar.Optionally, invalidates the child controls assigned to the control. (Devralındığı yer: Control) |
Invalidate(Region) |
Denetimin belirtilen bölgesini geçersiz kılar (Bu, bir sonraki boyama işleminde yeniden izlenecek alan olan denetimin güncelleştirme bölgesine ekler) ve bir Paint iletisinin denetime gönderilmesine neden olur.Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. (Devralındığı yer: Control) |
Invalidate(Region, Boolean) |
Denetimin belirtilen bölgesini geçersiz kılar (Bu, bir sonraki boyama işleminde yeniden izlenecek alan olan denetimin güncelleştirme bölgesine ekler) ve bir Paint iletisinin denetime gönderilmesine neden olur.Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. İsteğe bağlı olarak, denetime atanan alt denetimleri geçersiz kılar.Optionally, invalidates the child controls assigned to the control. (Devralındığı yer: Control) |
Invoke(Delegate) |
Denetimin temel alınan pencere tanıtıcısına sahip iş parçacığında belirtilen temsilciyi yürütür.Executes the specified delegate on the thread that owns the control's underlying window handle. (Devralındığı yer: Control) |
Invoke(Delegate, Object[]) |
Belirlenen bağımsız değişken listesiyle, denetimin temel alınan pencere tanıtıcısına sahip iş parçacığında belirtilen temsilciyi yürütür.Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments. (Devralındığı yer: Control) |
InvokeGotFocus(Control, EventArgs) |
GotFocusBelirtilen denetimin olayını oluşturur.Raises the GotFocus event for the specified control. (Devralındığı yer: Control) |
InvokeLostFocus(Control, EventArgs) |
LostFocusBelirtilen denetimin olayını oluşturur.Raises the LostFocus event for the specified control. (Devralındığı yer: Control) |
InvokeOnClick(Control, EventArgs) |
ClickBelirtilen denetimin olayını oluşturur.Raises the Click event for the specified control. (Devralındığı yer: Control) |
InvokePaint(Control, PaintEventArgs) |
PaintBelirtilen denetimin olayını oluşturur.Raises the Paint event for the specified control. (Devralındığı yer: Control) |
InvokePaintBackground(Control, PaintEventArgs) |
|
IsInputChar(Char) |
Bir karakterin, öğenin tanıdığı bir giriş karakteri olup olmadığını belirler.Determines whether a character is an input character that the item recognizes. (Devralındığı yer: ToolStrip) |
IsInputKey(Keys) |
Belirtilen anahtarın bir normal giriş anahtarı mı yoksa ön işleme gerektiren özel bir anahtar mı olduğunu belirler.Determines whether the specified key is a regular input key or a special key that requires preprocessing. (Devralındığı yer: ToolStrip) |
LogicalToDeviceUnits(Int32) |
Bir mantıksal DPı değerini eşdeğer DeviceUnit DPı değerine dönüştürür.Converts a Logical DPI value to its equivalent DeviceUnit DPI value. (Devralındığı yer: Control) |
LogicalToDeviceUnits(Size) |
Bir boyutu, geçerli DPı için ölçeklendirerek ve genişlik ve yükseklik için en yakın tamsayı değerine yuvarlayarak, mantıksal değerden cihaz birimlerine dönüştürür.Transforms a size from logical to device units by scaling it for the current DPI and rounding down to the nearest integer value for width and height. (Devralındığı yer: Control) |
MemberwiseClone() |
Geçerli bir basit kopyasını oluşturur Object .Creates a shallow copy of the current Object. (Devralındığı yer: Object) |
MemberwiseClone(Boolean) |
Geçerli nesnenin basit bir kopyasını oluşturur MarshalByRefObject .Creates a shallow copy of the current MarshalByRefObject object. (Devralındığı yer: MarshalByRefObject) |
NotifyInvalidate(Rectangle) |
InvalidatedGeçersiz kılmak için bir denetimin belirtilen bölgesiyle olayı oluşturur.Raises the Invalidated event with a specified region of the control to invalidate. (Devralındığı yer: Control) |
OnAutoSizeChanged(EventArgs) |
Olayını oluşturur AutoSizeChanged .Raises the AutoSizeChanged event. (Devralındığı yer: Control) |
OnBackColorChanged(EventArgs) |
Olayını oluşturur BackColorChanged .Raises the BackColorChanged event. (Devralındığı yer: Control) |
OnBackgroundImageChanged(EventArgs) |
Olayını oluşturur BackgroundImageChanged .Raises the BackgroundImageChanged event. (Devralındığı yer: Control) |
OnBackgroundImageLayoutChanged(EventArgs) |
Olayını oluşturur BackgroundImageLayoutChanged .Raises the BackgroundImageLayoutChanged event. (Devralındığı yer: Control) |
OnBeginDrag(EventArgs) |
Olayını oluşturur BeginDrag .Raises the BeginDrag event. (Devralındığı yer: ToolStrip) |
OnBindingContextChanged(EventArgs) |
Olayını oluşturur BindingContextChanged .Raises the BindingContextChanged event. (Devralındığı yer: Control) |
OnCausesValidationChanged(EventArgs) |
Olayını oluşturur CausesValidationChanged .Raises the CausesValidationChanged event. (Devralındığı yer: Control) |
OnChangeUICues(UICuesEventArgs) |
Olayını oluşturur ChangeUICues .Raises the ChangeUICues event. (Devralındığı yer: Control) |
OnClick(EventArgs) |
Olayını oluşturur Click .Raises the Click event. (Devralındığı yer: Control) |
OnClientSizeChanged(EventArgs) |
Olayını oluşturur ClientSizeChanged .Raises the ClientSizeChanged event. (Devralındığı yer: Control) |
OnClosed(ToolStripDropDownClosedEventArgs) | |
OnClosing(ToolStripDropDownClosingEventArgs) | |
OnContextMenuChanged(EventArgs) |
Olayını oluşturur ContextMenuChanged .Raises the ContextMenuChanged event. (Devralındığı yer: Control) |
OnContextMenuStripChanged(EventArgs) |
Olayını oluşturur ContextMenuStripChanged .Raises the ContextMenuStripChanged event. (Devralındığı yer: Control) |
OnControlAdded(ControlEventArgs) |
Olayını oluşturur ControlAdded .Raises the ControlAdded event. (Devralındığı yer: Control) |
OnControlRemoved(ControlEventArgs) |
Olayını oluşturur ControlRemoved .Raises the ControlRemoved event. (Devralındığı yer: Control) |
OnCreateControl() |
Yöntemini başlatır CreateControl() .Raises the CreateControl() method. (Devralındığı yer: Control) |
OnCursorChanged(EventArgs) |
Olayını oluşturur CursorChanged .Raises the CursorChanged event. (Devralındığı yer: Control) |
OnDockChanged(EventArgs) |
Olayını oluşturur DockChanged .Raises the DockChanged event. (Devralındığı yer: ToolStrip) |
OnDoubleClick(EventArgs) |
Olayını oluşturur DoubleClick .Raises the DoubleClick event. (Devralındığı yer: Control) |
OnDpiChangedAfterParent(EventArgs) |
Olayını oluşturur DpiChangedAfterParent .Raises the DpiChangedAfterParent event. (Devralındığı yer: Control) |
OnDpiChangedBeforeParent(EventArgs) |
Olayını oluşturur DpiChangedBeforeParent .Raises the DpiChangedBeforeParent event. (Devralındığı yer: Control) |
OnDragDrop(DragEventArgs) |
Olayını oluşturur DragDrop .Raises the DragDrop event. (Devralındığı yer: Control) |
OnDragEnter(DragEventArgs) |
Olayını oluşturur DragEnter .Raises the DragEnter event. (Devralındığı yer: Control) |
OnDragLeave(EventArgs) |
Olayını oluşturur DragLeave .Raises the DragLeave event. (Devralındığı yer: Control) |
OnDragOver(DragEventArgs) |
Olayını oluşturur DragOver .Raises the DragOver event. (Devralındığı yer: Control) |
OnEnabledChanged(EventArgs) |
Olayını oluşturur Enabled .Raises the Enabled event. (Devralındığı yer: ToolStrip) |
OnEndDrag(EventArgs) |
Olayını oluşturur EndDrag .Raises the EndDrag event. (Devralındığı yer: ToolStrip) |
OnEnter(EventArgs) |
Olayını oluşturur Enter .Raises the Enter event. (Devralındığı yer: Control) |
OnFontChanged(EventArgs) |
Olayını oluşturur FontChanged .Raises the FontChanged event. (Devralındığı yer: ToolStrip) |
OnForeColorChanged(EventArgs) |
Olayını oluşturur ForeColorChanged .Raises the ForeColorChanged event. (Devralındığı yer: Control) |
OnGiveFeedback(GiveFeedbackEventArgs) |
Olayını oluşturur GiveFeedback .Raises the GiveFeedback event. (Devralındığı yer: Control) |
OnGotFocus(EventArgs) |
Olayını oluşturur GotFocus .Raises the GotFocus event. (Devralındığı yer: Control) |
OnHandleCreated(EventArgs) |
Olayını oluşturur HandleCreated .Raises the HandleCreated event. |
OnHandleDestroyed(EventArgs) |
Olayını oluşturur HandleDestroyed .Raises the HandleDestroyed event. (Devralındığı yer: ToolStrip) |
OnHelpRequested(HelpEventArgs) |
Olayını oluşturur HelpRequested .Raises the HelpRequested event. (Devralındığı yer: Control) |
OnImeModeChanged(EventArgs) |
Olayını oluşturur ImeModeChanged .Raises the ImeModeChanged event. (Devralındığı yer: Control) |
OnInvalidated(InvalidateEventArgs) |
Olayını oluşturur Invalidated .Raises the Invalidated event. (Devralındığı yer: ToolStrip) |
OnItemAdded(ToolStripItemEventArgs) |
Olayını oluşturur ItemAdded .Raises the ItemAdded event. (Devralındığı yer: ToolStrip) |
OnItemClicked(ToolStripItemClickedEventArgs) |
Olayını oluşturur ItemClicked .Raises the ItemClicked event. |
OnItemRemoved(ToolStripItemEventArgs) |
Olayını oluşturur ItemRemoved .Raises the ItemRemoved event. (Devralındığı yer: ToolStrip) |
OnKeyDown(KeyEventArgs) |
Olayını oluşturur KeyDown .Raises the KeyDown event. (Devralındığı yer: Control) |
OnKeyPress(KeyPressEventArgs) |
Olayını oluşturur KeyPress .Raises the KeyPress event. (Devralındığı yer: Control) |
OnKeyUp(KeyEventArgs) |
Olayını oluşturur KeyUp .Raises the KeyUp event. (Devralındığı yer: Control) |
OnLayout(LayoutEventArgs) | |
OnLayoutCompleted(EventArgs) |
Olayını oluşturur LayoutCompleted .Raises the LayoutCompleted event. (Devralındığı yer: ToolStrip) |
OnLayoutStyleChanged(EventArgs) |
Olayını oluşturur LayoutStyleChanged .Raises the LayoutStyleChanged event. (Devralındığı yer: ToolStrip) |
OnLeave(EventArgs) |
Olayını oluşturur Leave .Raises the Leave event. (Devralındığı yer: ToolStrip) |
OnLocationChanged(EventArgs) |
Olayını oluşturur LocationChanged .Raises the LocationChanged event. (Devralındığı yer: Control) |
OnLostFocus(EventArgs) |
Olayını oluşturur LostFocus .Raises the LostFocus event. (Devralındığı yer: ToolStrip) |
OnMarginChanged(EventArgs) |
Olayını oluşturur MarginChanged .Raises the MarginChanged event. (Devralındığı yer: Control) |
OnMouseCaptureChanged(EventArgs) |
Olayını oluşturur MouseCaptureChanged .Raises the MouseCaptureChanged event. (Devralındığı yer: ToolStrip) |
OnMouseClick(MouseEventArgs) |
Olayını oluşturur MouseClick .Raises the MouseClick event. (Devralındığı yer: Control) |
OnMouseDoubleClick(MouseEventArgs) |
Olayını oluşturur MouseDoubleClick .Raises the MouseDoubleClick event. (Devralındığı yer: Control) |
OnMouseDown(MouseEventArgs) |
Olayını oluşturur MouseDown .Raises the MouseDown event. (Devralındığı yer: ToolStrip) |
OnMouseEnter(EventArgs) |
Olayını oluşturur MouseEnter .Raises the MouseEnter event. (Devralındığı yer: Control) |
OnMouseHover(EventArgs) |
Olayını oluşturur MouseHover .Raises the MouseHover event. (Devralındığı yer: Control) |
OnMouseLeave(EventArgs) |
Olayını oluşturur MouseLeave .Raises the MouseLeave event. (Devralındığı yer: ToolStrip) |
OnMouseMove(MouseEventArgs) |
Olayını oluşturur MouseMove .Raises the MouseMove event. (Devralındığı yer: ToolStrip) |
OnMouseUp(MouseEventArgs) | |
OnMouseWheel(MouseEventArgs) |
Olayını oluşturur MouseWheel .Raises the MouseWheel event. (Devralındığı yer: ScrollableControl) |
OnMove(EventArgs) |
Olayını oluşturur Move .Raises the Move event. (Devralındığı yer: Control) |
OnNotifyMessage(Message) |
Windows iletilerinin denetimine bildirir.Notifies the control of Windows messages. (Devralındığı yer: Control) |
OnOpened(EventArgs) | |
OnOpening(CancelEventArgs) | |
OnPaddingChanged(EventArgs) |
Olayını oluşturur PaddingChanged .Raises the PaddingChanged event. (Devralındığı yer: ScrollableControl) |
OnPaint(PaintEventArgs) |
Olayını oluşturur Paint .Raises the Paint event. (Devralındığı yer: ToolStrip) |
OnPaintBackground(PaintEventArgs) |
Paint ToolStrip Arka planın olayını oluşturur.Raises the Paint event for the ToolStrip background. (Devralındığı yer: ToolStrip) |
OnPaintGrip(PaintEventArgs) |
Olayını oluşturur PaintGrip .Raises the PaintGrip event. (Devralındığı yer: ToolStrip) |
OnParentBackColorChanged(EventArgs) |
BackColorChanged BackColor Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the BackColorChanged event when the BackColor property value of the control's container changes. (Devralındığı yer: Control) |
OnParentBackgroundImageChanged(EventArgs) |
BackgroundImageChanged BackgroundImage Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the BackgroundImageChanged event when the BackgroundImage property value of the control's container changes. (Devralındığı yer: Control) |
OnParentBindingContextChanged(EventArgs) |
BindingContextChanged BindingContext Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the BindingContextChanged event when the BindingContext property value of the control's container changes. (Devralındığı yer: Control) |
OnParentChanged(EventArgs) |
Olayını oluşturur ParentChanged .Raises the ParentChanged event. |
OnParentCursorChanged(EventArgs) |
Olayını oluşturur CursorChanged .Raises the CursorChanged event. (Devralındığı yer: Control) |
OnParentEnabledChanged(EventArgs) |
EnabledChanged Enabled Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the EnabledChanged event when the Enabled property value of the control's container changes. (Devralındığı yer: Control) |
OnParentFontChanged(EventArgs) |
FontChanged Font Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the FontChanged event when the Font property value of the control's container changes. (Devralındığı yer: Control) |
OnParentForeColorChanged(EventArgs) |
ForeColorChanged ForeColor Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the ForeColorChanged event when the ForeColor property value of the control's container changes. (Devralındığı yer: Control) |
OnParentRightToLeftChanged(EventArgs) |
RightToLeftChanged RightToLeft Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the RightToLeftChanged event when the RightToLeft property value of the control's container changes. (Devralındığı yer: Control) |
OnParentVisibleChanged(EventArgs) |
VisibleChanged Visible Denetimin kapsayıcısının Özellik değeri değiştiğinde olayı başlatır.Raises the VisibleChanged event when the Visible property value of the control's container changes. (Devralındığı yer: Control) |
OnPreviewKeyDown(PreviewKeyDownEventArgs) |
Olayını oluşturur PreviewKeyDown .Raises the PreviewKeyDown event. (Devralındığı yer: Control) |
OnPrint(PaintEventArgs) |
Olayını oluşturur Paint .Raises the Paint event. (Devralındığı yer: Control) |
OnQueryContinueDrag(QueryContinueDragEventArgs) |
Olayını oluşturur QueryContinueDrag .Raises the QueryContinueDrag event. (Devralındığı yer: Control) |
OnRegionChanged(EventArgs) |
Olayını oluşturur RegionChanged .Raises the RegionChanged event. (Devralındığı yer: Control) |
OnRendererChanged(EventArgs) |
Olayını oluşturur RendererChanged .Raises the RendererChanged event. (Devralındığı yer: ToolStrip) |
OnResize(EventArgs) |
Olayını oluşturur Resize .Raises the Resize event. (Devralındığı yer: Control) |
OnRightToLeftChanged(EventArgs) |
Olayını oluşturur RightToLeftChanged .Raises the RightToLeftChanged event. (Devralındığı yer: ToolStrip) |
OnScroll(ScrollEventArgs) |
Olayını oluşturur Scroll .Raises the Scroll event. (Devralındığı yer: ToolStrip) |
OnSizeChanged(EventArgs) |
Olayını oluşturur SizeChanged .Raises the SizeChanged event. (Devralındığı yer: Control) |
OnStyleChanged(EventArgs) |
Olayını oluşturur StyleChanged .Raises the StyleChanged event. (Devralındığı yer: Control) |
OnSystemColorsChanged(EventArgs) |
Olayını oluşturur SystemColorsChanged .Raises the SystemColorsChanged event. (Devralındığı yer: Control) |
OnTabIndexChanged(EventArgs) |
Olayını oluşturur TabIndexChanged .Raises the TabIndexChanged event. (Devralındığı yer: Control) |
OnTabStopChanged(EventArgs) |
Olayını oluşturur TabStopChanged .Raises the TabStopChanged event. (Devralındığı yer: ToolStrip) |
OnTextChanged(EventArgs) |
Olayını oluşturur TextChanged .Raises the TextChanged event. (Devralındığı yer: Control) |
OnValidated(EventArgs) |
Olayını oluşturur Validated .Raises the Validated event. (Devralındığı yer: Control) |
OnValidating(CancelEventArgs) |
Olayını oluşturur Validating .Raises the Validating event. (Devralındığı yer: Control) |
OnVisibleChanged(EventArgs) |
Olayını oluşturur VisibleChanged .Raises the VisibleChanged event. |
PerformLayout() |
Denetim, tüm alt denetimlerine Düzen mantığı uygulamaya zorlar.Forces the control to apply layout logic to all its child controls. (Devralındığı yer: Control) |
PerformLayout(Control, String) |
Denetim, tüm alt denetimlerine Düzen mantığı uygulamaya zorlar.Forces the control to apply layout logic to all its child controls. (Devralındığı yer: Control) |
PointToClient(Point) |
Belirtilen ekran noktasının konumunu istemci koordinatlarına göre hesaplar.Computes the location of the specified screen point into client coordinates. (Devralındığı yer: Control) |
PointToScreen(Point) |
Belirtilen istemci noktasının konumunu ekran koordinatlarına göre hesaplar.Computes the location of the specified client point into screen coordinates. (Devralındığı yer: Control) |
PreProcessControlMessage(Message) |
İleti döngüsündeki klavye veya girdi iletilerini dağıtılmadan önceden işler.Preprocesses keyboard or input messages within the message loop before they are dispatched. (Devralındığı yer: Control) |
PreProcessMessage(Message) |
İleti döngüsündeki klavye veya girdi iletilerini dağıtılmadan önceden işler.Preprocesses keyboard or input messages within the message loop before they are dispatched. (Devralındığı yer: Control) |
ProcessCmdKey(Message, Keys) |
Bir komut anahtarını işler.Processes a command key. (Devralındığı yer: ToolStrip) |
ProcessDialogChar(Char) |
Bir iletişim kutusu karakterini işler.Processes a dialog box character. |
ProcessDialogKey(Keys) |
İletişim kutusu anahtarını işler.Processes a dialog box key. |
ProcessKeyEventArgs(Message) |
Bir anahtar iletisini işler ve uygun denetim olaylarını oluşturur.Processes a key message and generates the appropriate control events. (Devralındığı yer: Control) |
ProcessKeyMessage(Message) |
Klavye iletisini işler.Processes a keyboard message. (Devralındığı yer: Control) |
ProcessKeyPreview(Message) |
Klavye iletisinin önizlemelerini verir.Previews a keyboard message. (Devralındığı yer: Control) |
ProcessMnemonic(Char) |
Bir anımsatıcı karakterini işler.Processes a mnemonic character. |
RaiseDragEvent(Object, DragEventArgs) |
Uygun sürükleme olayını oluşturur.Raises the appropriate drag event. (Devralındığı yer: Control) |
RaiseKeyEvent(Object, KeyEventArgs) |
Uygun anahtar olayını oluşturur.Raises the appropriate key event. (Devralındığı yer: Control) |
RaiseMouseEvent(Object, MouseEventArgs) |
Uygun fare olayını oluşturur.Raises the appropriate mouse event. (Devralındığı yer: Control) |
RaisePaintEvent(Object, PaintEventArgs) |
Uygun boyama olayını oluşturur.Raises the appropriate paint event. (Devralındığı yer: Control) |
RecreateHandle() |
Denetim için tanıtıcının yeniden oluşturulmasına zorlar.Forces the re-creation of the handle for the control. (Devralındığı yer: Control) |
RectangleToClient(Rectangle) |
İstemci koordinatlarındaki belirtilen ekran dikdörtgeninin boyutunu ve konumunu hesaplar.Computes the size and location of the specified screen rectangle in client coordinates. (Devralındığı yer: Control) |
RectangleToScreen(Rectangle) |
Belirtilen istemci dikdörtgeninin boyutunu ve konumunu ekran koordinatlarına göre hesaplar.Computes the size and location of the specified client rectangle in screen coordinates. (Devralındığı yer: Control) |
Refresh() |
Denetimi, istemci alanını geçersiz kılacak ve kendisini ve tüm alt denetimleri hemen yeniden çizmeye zorlar.Forces the control to invalidate its client area and immediately redraw itself and any child controls. (Devralındığı yer: Control) |
RescaleConstantsForDpi(Int32, Int32) |
Türetilmiş bir sınıfta geçersiz kılınırsa, denetim boyama içinde kullanılan herhangi bir sihirli sayının yeniden olayını işler.When overridden in a derived class, handles the rescaling of any magic numbers that are used in control painting. (Devralındığı yer: ToolStrip) |
ResetBackColor() |
BackColorÖzelliği varsayılan değerine sıfırlar.Resets the BackColor property to its default value. (Devralındığı yer: Control) |
ResetBindings() |
, ' A bir denetimin, BindingSource listedeki tüm öğeleri yeniden kullanmasına ve bunların görüntülenmiş değerlerini yenilemesine neden olur.Causes a control bound to the BindingSource to reread all the items in the list and refresh their displayed values. (Devralındığı yer: Control) |
ResetCursor() |
CursorÖzelliği varsayılan değerine sıfırlar.Resets the Cursor property to its default value. (Devralındığı yer: Control) |
ResetFont() |
FontÖzelliği varsayılan değerine sıfırlar.Resets the Font property to its default value. (Devralındığı yer: Control) |
ResetForeColor() |
ForeColorÖzelliği varsayılan değerine sıfırlar.Resets the ForeColor property to its default value. (Devralındığı yer: Control) |
ResetImeMode() |
ImeModeÖzelliği varsayılan değerine sıfırlar.Resets the ImeMode property to its default value. (Devralındığı yer: Control) |
ResetMinimumSize() |
Bu yöntem bu sınıf için uygun değildir.This method is not relevant for this class. (Devralındığı yer: ToolStrip) |
ResetMouseEventArgs() |
Olayı işlemek için denetimi sıfırlar MouseLeave .Resets the control to handle the MouseLeave event. (Devralındığı yer: Control) |
ResetRightToLeft() |
RightToLeftÖzelliği varsayılan değerine sıfırlar.Resets the RightToLeft property to its default value. (Devralındığı yer: Control) |
ResetText() |
TextÖzelliği varsayılan değerine ( Empty ) sıfırlar.Resets the Text property to its default value (Empty). (Devralındığı yer: Control) |
RestoreFocus() |
Odağın dönüş konumunu denetler.Controls the return location of the focus. (Devralındığı yer: ToolStrip) |
ResumeLayout() |
Her zamanki Düzen mantığını sürdürür.Resumes usual layout logic. (Devralındığı yer: Control) |
ResumeLayout(Boolean) |
, İsteğe bağlı olarak, bekleyen düzen isteklerinin anında yerleşimini zorlamak için her zamanki Düzen mantığını sürdürür.Resumes usual layout logic, optionally forcing an immediate layout of pending layout requests. (Devralındığı yer: Control) |
RtlTranslateAlignment(ContentAlignment) |
ContentAlignment ContentAlignment Sağdan sola metni desteklemek için belirtilen öğesini uygun olarak dönüştürür.Converts the specified ContentAlignment to the appropriate ContentAlignment to support right-to-left text. (Devralındığı yer: Control) |
RtlTranslateAlignment(HorizontalAlignment) |
HorizontalAlignment HorizontalAlignment Sağdan sola metni desteklemek için belirtilen öğesini uygun olarak dönüştürür.Converts the specified HorizontalAlignment to the appropriate HorizontalAlignment to support right-to-left text. (Devralındığı yer: Control) |
RtlTranslateAlignment(LeftRightAlignment) |
LeftRightAlignment LeftRightAlignment Sağdan sola metni desteklemek için belirtilen öğesini uygun olarak dönüştürür.Converts the specified LeftRightAlignment to the appropriate LeftRightAlignment to support right-to-left text. (Devralındığı yer: Control) |
RtlTranslateContent(ContentAlignment) |
ContentAlignment ContentAlignment Sağdan sola metni desteklemek için belirtilen öğesini uygun olarak dönüştürür.Converts the specified ContentAlignment to the appropriate ContentAlignment to support right-to-left text. (Devralındığı yer: Control) |
RtlTranslateHorizontal(HorizontalAlignment) |
HorizontalAlignment HorizontalAlignment Sağdan sola metni desteklemek için belirtilen öğesini uygun olarak dönüştürür.Converts the specified HorizontalAlignment to the appropriate HorizontalAlignment to support right-to-left text. (Devralındığı yer: Control) |
RtlTranslateLeftRight(LeftRightAlignment) |
LeftRightAlignment LeftRightAlignment Sağdan sola metni desteklemek için belirtilen öğesini uygun olarak dönüştürür.Converts the specified LeftRightAlignment to the appropriate LeftRightAlignment to support right-to-left text. (Devralındığı yer: Control) |
Scale(Single) |
Kullanımdan kalktı.
Denetimi ve tüm alt denetimleri ölçeklendirir.Scales the control and any child controls. (Devralındığı yer: Control) |
Scale(Single, Single) |
Kullanımdan kalktı.
Tüm denetimi ve alt denetimleri ölçeklendirir.Scales the entire control and any child controls. (Devralındığı yer: Control) |
Scale(SizeF) |
Denetimi ve tüm alt denetimleri belirtilen ölçekleme faktörüyle ölçeklendirir.Scales the control and all child controls by the specified scaling factor. (Devralındığı yer: Control) |
ScaleBitmapLogicalToDevice(Bitmap) |
Bir DPı değişikliği gerçekleştiğinde, bir mantıksal bit eşlem değerini eşdeğer cihaz birimi değeri olarak ölçeklendirir.Scales a logical bitmap value to it's equivalent device unit value when a DPI change occurs. (Devralındığı yer: Control) |
ScaleControl(SizeF, BoundsSpecified) |
Bir denetimin konumunu, boyutunu, doldurmayı ve kenar boşluğunu ölçeklendirir.Scales a control's location, size, padding and margin. |
ScaleCore(Single, Single) |
Bu yöntem bu sınıfla ilgili değildir.This method is not relevant to this class. |
ScrollControlIntoView(Control) |
Belirtilen alt denetimi otomatik kaydırma etkin bir denetimde görünümüne kaydırır.Scrolls the specified child control into view on an auto-scroll enabled control. (Devralındığı yer: ScrollableControl) |
ScrollToControl(Control) |
Belirtilen alt denetime kaydırma sapmasını hesaplar.Calculates the scroll offset to the specified child control. (Devralındığı yer: ScrollableControl) |
Select() |
Denetimi etkinleştirir.Activates the control. (Devralındığı yer: Control) |
Select(Boolean, Boolean) |
Bir alt denetimi etkinleştirir.Activates a child control. İsteğe bağlı olarak, denetimi arasından seçmek için sekme düzeninde yönü belirtir.Optionally specifies the direction in the tab order to select the control from. (Devralındığı yer: ToolStrip) |
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean) |
Sonraki denetimi etkinleştirir.Activates the next control. (Devralındığı yer: Control) |
SendToBack() |
Denetimi z düzeninin arkasına gönderir.Sends the control to the back of the z-order. (Devralındığı yer: Control) |
SetAutoScrollMargin(Int32, Int32) |
Bu yöntem bu sınıf için uygun değildir.This method is not relevant for this class. (Devralındığı yer: ToolStrip) |
SetAutoSizeMode(AutoSizeMode) |
Özelliği etkinleştirildiğinde bir denetimin nasıl davranacağını gösteren bir değer ayarlar AutoSize .Sets a value indicating how a control will behave when its AutoSize property is enabled. (Devralındığı yer: Control) |
SetBounds(Int32, Int32, Int32, Int32) |
Denetimin sınırlarını belirtilen konuma ve boyuta ayarlar.Sets the bounds of the control to the specified location and size. (Devralındığı yer: Control) |
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified) |
Denetimin belirtilen sınırlarını belirtilen konuma ve boyuta ayarlar.Sets the specified bounds of the control to the specified location and size. (Devralındığı yer: Control) |
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) |
Bu denetimin belirtilen sınırlarını ayarlama işini gerçekleştirir.Performs the work of setting the specified bounds of this control. |
SetClientSizeCore(Int32, Int32) |
Denetimin istemci alanının boyutunu ayarlar.Sets the size of the client area of the control. (Devralındığı yer: Control) |
SetDisplayedItems() |
Düzen yapıldıktan sonra, görüntüleneni ve taşma öğeleri koleksiyonunu sıfırlar.Resets the collection of displayed and overflow items after a layout is done. (Devralındığı yer: ToolStrip) |
SetDisplayRectLocation(Int32, Int32) |
Görüntü penceresini belirtilen değere konumlandırır.Positions the display window to the specified value. (Devralındığı yer: ScrollableControl) |
SetItemLocation(ToolStripItem, Point) |
A ToolStripItem ' da belirli bir yere tutturur ToolStrip .Anchors a ToolStripItem to a particular place on a ToolStrip. (Devralındığı yer: ToolStrip) |
SetScrollState(Int32, Boolean) |
Belirtilen kaydırma durumu bayrağını ayarlar.Sets the specified scroll state flag. (Devralındığı yer: ScrollableControl) |
SetStyle(ControlStyles, Boolean) |
Belirtilen ControlStyles bayrağını veya ya da olarak |
SetTopLevel(Boolean) |
Denetimi en üst düzey denetim olarak ayarlar.Sets the control as the top-level control. (Devralındığı yer: Control) |
SetVisibleCore(Boolean) |
Sahibi halen görüntüleniyorsa, sahibinin boyutunu ayarlar, ToolStrip ToolStripDropDown ToolStrip veya ToolStripDropDown ToolStrip Şu anda görüntülenmiyorsa, öğesinin etkin alt denetimlerini temizler ve sıfırlar ToolStrip .Adjusts the size of the owner ToolStrip to accommodate the ToolStripDropDown if the owner ToolStrip is currently displayed, or clears and resets active ToolStripDropDown child controls of the ToolStrip if the ToolStrip is not currently displayed. |
Show() |
ToolStripDropDownDenetimi varsayılan konumunda görüntüler.Displays the ToolStripDropDown control in its default position. |
Show(Control, Int32, Int32) |
ToolStripDropDownBelirtilen denetimin yatay ve dikey ekran koordinatlarına göre konumlandırır.Positions the ToolStripDropDown relative to the specified control's horizontal and vertical screen coordinates. |
Show(Control, Point) |
ToolStripDropDownBelirtilen denetim konumuna göre konumlandırır.Positions the ToolStripDropDown relative to the specified control location. |
Show(Control, Point, ToolStripDropDownDirection) |
Belirtilen ToolStripDropDown denetimdeki ve üst denetime göre belirtilen yönle göreli olarak konumlandırır.Positions the ToolStripDropDown relative to the specified control at the specified location and with the specified direction relative to the parent control. |
Show(Int32, Int32) |
ToolStripDropDownBelirtilen ekran koordinatlarına göre konumlandırır.Positions the ToolStripDropDown relative to the specified screen coordinates. |
Show(Point) |
ToolStripDropDownBelirtilen ekran konumuna göre konumlandırır.Positions the ToolStripDropDown relative to the specified screen location. |
Show(Point, ToolStripDropDownDirection) |
ToolStripDropDownBelirtilen denetim konumuna ve üst denetime göre belirtilen yöne göre konumlandırır.Positions the ToolStripDropDown relative to the specified control location and with the specified direction relative to the parent control. |
SizeFromClientSize(Size) |
Tüm denetimin boyutunu istemci alanının yüksekliğinden ve genişliğinden belirler.Determines the size of the entire control from the height and width of its client area. (Devralındığı yer: Control) |
SuspendLayout() |
Denetimin Düzen mantığını geçici olarak askıya alır.Temporarily suspends the layout logic for the control. (Devralındığı yer: Control) |
ToString() |
Denetimi temsil eden bir dize döndürür ToolStrip .Returns a string that represents the ToolStrip control. (Devralındığı yer: ToolStrip) |
Update() |
Denetimin istemci alanı içinde geçersiz kılınan bölgeleri yeniden çizmesine neden olur.Causes the control to redraw the invalidated regions within its client area. (Devralındığı yer: Control) |
UpdateBounds() |
Denetimin sınırlarını geçerli boyut ve konum ile güncelleştirir.Updates the bounds of the control with the current size and location. (Devralındığı yer: Control) |
UpdateBounds(Int32, Int32, Int32, Int32) |
Denetimin sınırlarını belirtilen boyut ve konum ile güncelleştirir.Updates the bounds of the control with the specified size and location. (Devralındığı yer: Control) |
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32) |
Denetimin sınırlarını belirtilen boyut, konum ve istemci boyutuyla güncelleştirir.Updates the bounds of the control with the specified size, location, and client size. (Devralındığı yer: Control) |
UpdateStyles() |
Atanan stilleri denetime yeniden uygulanabilir olmaya zorlar.Forces the assigned styles to be reapplied to the control. (Devralındığı yer: Control) |
UpdateZOrder() |
Denetimi üst öğesinin z düzeninde güncelleştirir.Updates the control in its parent's z-order. (Devralındığı yer: Control) |
WndProc(Message) |
Windows iletilerini işler.Processes Windows messages. |
Ekinlikler
AutoSizeChanged |
AutoSizeÖzellik değiştiğinde gerçekleşir.Occurs when the AutoSize property has changed. (Devralındığı yer: ToolStrip) |
BackColorChanged |
BackColorÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the BackColor property changes. (Devralındığı yer: Control) |
BackgroundImageChanged |
BackgroundImageÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the BackgroundImage property changes. |
BackgroundImageLayoutChanged |
BackgroundImageÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the BackgroundImage property changes. |
BeginDrag |
Kullanıcı denetimi sürüklemeye başladığında gerçekleşir ToolStrip .Occurs when the user begins to drag the ToolStrip control. (Devralındığı yer: ToolStrip) |
BindingContextChanged |
BindingContextÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the BindingContext property changes. |
CausesValidationChanged |
CausesValidationÖzellik değiştiğinde gerçekleşir.Occurs when the CausesValidation property changes. (Devralındığı yer: ToolStrip) |
ChangeUICues |
Odak veya klavye kullanıcı arabirimi (UI) ipuçları değiştiğinde oluşur.Occurs when the focus or keyboard user interface (UI) cues change. |
Click |
Denetime tıklandığında gerçekleşir.Occurs when the control is clicked. (Devralındığı yer: Control) |
ClientSizeChanged |
ClientSizeÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the ClientSize property changes. (Devralındığı yer: Control) |
Closed |
Kapalı olduğunda gerçekleşir ToolStripDropDown .Occurs when the ToolStripDropDown is closed. |
Closing |
ToolStripDropDownDenetim kapanarak gerçekleşir.Occurs when the ToolStripDropDown control is about to close. |
ContextMenuChanged |
Bu olay bu sınıfla ilgili değildir.This event is not relevant to this class. |
ContextMenuChanged |
ContextMenuÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the ContextMenu property changes. (Devralındığı yer: Control) |
ContextMenuStripChanged |
Bu olay bu sınıfla ilgili değildir.This event is not relevant to this class. |
ControlAdded |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. (Devralındığı yer: ToolStrip) |
ControlRemoved |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. (Devralındığı yer: ToolStrip) |
CursorChanged |
CursorÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the Cursor property changes. (Devralındığı yer: ToolStrip) |
Disposed |
Bileşen yönteme bir çağrı tarafından bırakıldığında gerçekleşir Dispose() .Occurs when the component is disposed by a call to the Dispose() method. (Devralındığı yer: Component) |
DockChanged |
Bu olay bu sınıfla ilgili değildir.This event is not relevant to this class. |
DoubleClick |
Denetim çift tıklandığında gerçekleşir.Occurs when the control is double-clicked. (Devralındığı yer: Control) |
DpiChangedAfterParent |
Bir denetimin DPı ayarı, üst denetiminin DPı 'Sı veya formu değiştirildikten sonra programlı bir şekilde değiştirildiğinde gerçekleşir.Occurs when the DPI setting for a control is changed programmatically after the DPI of its parent control or form has changed. (Devralındığı yer: Control) |
DpiChangedBeforeParent |
Bir denetimin DPı ayarı, üst denetimi veya formu için bir DPı değişiklik olayından önce programlama yoluyla değiştirildiğinde gerçekleşir.Occurs when the DPI setting for a control is changed programmatically before a DPI change event for its parent control or form has occurred. (Devralındığı yer: Control) |
DragDrop |
Bir sürükle ve bırak işlemi tamamlandığında gerçekleşir.Occurs when a drag-and-drop operation is completed. (Devralındığı yer: Control) |
DragEnter |
Bir nesne denetimin sınırları içine sürüklendiğinde oluşur.Occurs when an object is dragged into the control's bounds. (Devralındığı yer: Control) |
DragLeave |
Bir nesne denetimin sınırları dışına sürüklendiğinde gerçekleşir.Occurs when an object is dragged out of the control's bounds. (Devralındığı yer: Control) |
DragOver |
Bir nesne denetimin sınırları üzerine sürüklendiğinde gerçekleşir.Occurs when an object is dragged over the control's bounds. (Devralındığı yer: Control) |
EnabledChanged |
EnabledÖzellik değeri değiştiğinde gerçekleşir.Occurs when the Enabled property value has changed. (Devralındığı yer: Control) |
EndDrag |
Kullanıcı denetimi sürüklemeyi durdurduğu zaman gerçekleşir ToolStrip .Occurs when the user stops dragging the ToolStrip control. (Devralındığı yer: ToolStrip) |
Enter |
Odak öğesine girdiğinde gerçekleşir ToolStripDropDown .Occurs when the focus enters the ToolStripDropDown. |
FontChanged |
FontÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the Font property changes. |
ForeColorChanged |
ForeColorÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the ForeColor property changes. |
GiveFeedback |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. |
GotFocus |
Denetim odağı aldığında gerçekleşir.Occurs when the control receives focus. (Devralındığı yer: Control) |
HandleCreated |
Denetim için bir tanıtıcı oluşturulduğunda gerçekleşir.Occurs when a handle is created for the control. (Devralındığı yer: Control) |
HandleDestroyed |
Denetimin tanıtıcısı yok etme sürecinde olduğunda gerçekleşir.Occurs when the control's handle is in the process of being destroyed. (Devralındığı yer: Control) |
HelpRequested |
Kullanıcı denetim için yardım istediğinde gerçekleşir.Occurs when the user requests help for a control. |
ImeModeChanged |
ImeModeChangedÖzellik değiştiğinde gerçekleşir.Occurs when the ImeModeChanged property has changed. |
Invalidated |
Bir denetimin ekranı yeniden çizim gerektirdiğinde gerçekleşir.Occurs when a control's display requires redrawing. (Devralındığı yer: Control) |
ItemAdded |
Öğesine yeni eklendiğinde gerçekleşir ToolStripItem ToolStripItemCollection .Occurs when a new ToolStripItem is added to the ToolStripItemCollection. (Devralındığı yer: ToolStrip) |
ItemClicked |
ToolStripItemTıklandığında gerçekleşir.Occurs when the ToolStripItem is clicked. (Devralındığı yer: ToolStrip) |
ItemRemoved |
ToolStripItem, Öğesinden kaldırıldığında gerçekleşir ToolStripItemCollection .Occurs when a ToolStripItem is removed from the ToolStripItemCollection. (Devralındığı yer: ToolStrip) |
KeyDown |
Bir tuşa basıldığında gerçekleşir ve odak edilirken aşağı tutulur ToolStripDropDown .Occurs when a key is pressed and held down while the ToolStripDropDown has focus. |
KeyPress |
Odaklanıldığında bir tuşa basıldığında gerçekleşir ToolStripDropDown .Occurs when a key is pressed while the ToolStripDropDown has focus. |
KeyUp |
Denetim odağa sahip olduğunda bir anahtar serbest bırakıldığında gerçekleşir.Occurs when a key is released while the control has focus. |
Layout |
Bir denetim, alt denetimlerini yeniden konumlandırması gerektiğinde oluşur.Occurs when a control should reposition its child controls. (Devralındığı yer: Control) |
LayoutCompleted |
Öğesinin düzeni ToolStrip tamamlandığında gerçekleşir.Occurs when the layout of the ToolStrip is complete. (Devralındığı yer: ToolStrip) |
LayoutStyleChanged |
LayoutStyleÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the LayoutStyle property changes. (Devralındığı yer: ToolStrip) |
Leave |
Giriş odağı denetimden çıktığında gerçekleşir.Occurs when the input focus leaves the control. |
LocationChanged |
LocationÖzellik değeri değiştiğinde gerçekleşir.Occurs when the Location property value has changed. (Devralındığı yer: Control) |
LostFocus |
Denetim odağı kaybettiğinde gerçekleşir.Occurs when the control loses focus. (Devralındığı yer: Control) |
MarginChanged |
Denetimin kenar boşluğu değiştiğinde gerçekleşir.Occurs when the control's margin changes. (Devralındığı yer: Control) |
MouseCaptureChanged |
Denetim, fare yakalamayı kaybettiğinde oluşur.Occurs when the control loses mouse capture. (Devralındığı yer: Control) |
MouseClick |
Denetim fareyle tıklatıldığında gerçekleşir.Occurs when the control is clicked by the mouse. (Devralındığı yer: Control) |
MouseDoubleClick |
Denetim fareyle çift tıklandığında gerçekleşir.Occurs when the control is double clicked by the mouse. (Devralındığı yer: Control) |
MouseDown |
Fare işaretçisi denetimin üzerindeyse ve bir fare düğmesi basılı olduğunda gerçekleşir.Occurs when the mouse pointer is over the control and a mouse button is pressed. (Devralındığı yer: Control) |
MouseEnter |
Fare işaretçisi denetime girdiğinde gerçekleşir.Occurs when the mouse pointer enters the control. (Devralındığı yer: Control) |
MouseHover |
Fare işaretçisi denetimin üzerine getirildiğinde gerçekleşir.Occurs when the mouse pointer rests on the control. (Devralındığı yer: Control) |
MouseLeave |
Fare işaretçisi denetimi terk ettiğinde gerçekleşir.Occurs when the mouse pointer leaves the control. (Devralındığı yer: Control) |
MouseMove |
Fare işaretçisi denetimin üzerine hareket ettiğinde gerçekleşir.Occurs when the mouse pointer is moved over the control. (Devralındığı yer: Control) |
MouseUp |
Fare işaretçisi denetimin üzerindeyse ve bir fare düğmesi bırakıldığında gerçekleşir.Occurs when the mouse pointer is over the control and a mouse button is released. (Devralındığı yer: Control) |
MouseWheel |
Denetim odaklanmışken fare tekerleği hareket ettiğinde gerçekleşir.Occurs when the mouse wheel moves while the control has focus. (Devralındığı yer: Control) |
Move |
Denetim taşındığında gerçekleşir.Occurs when the control is moved. (Devralındığı yer: Control) |
Opened |
ToolStripDropDownAçıldığında gerçekleşir.Occurs when the ToolStripDropDown is opened. |
Opening |
ToolStripDropDownDenetim açılırken gerçekleşir.Occurs when the ToolStripDropDown control is opening. |
PaddingChanged |
Denetimin dolgusu değiştiğinde gerçekleşir.Occurs when the control's padding changes. (Devralındığı yer: Control) |
Paint |
Denetim yeniden çizildiğinde oluşur.Occurs when the control is redrawn. (Devralındığı yer: Control) |
PaintGrip |
ToolStripTaşıma tutamacı boyandığında gerçekleşir.Occurs when the ToolStrip move handle is painted. (Devralındığı yer: ToolStrip) |
ParentChanged |
ParentÖzellik değeri değiştiğinde gerçekleşir.Occurs when the Parent property value changes. (Devralındığı yer: Control) |
PreviewKeyDown |
KeyDownOdak Bu denetimde olduğunda bir tuşa basıldığında olaydan önce oluşur.Occurs before the KeyDown event when a key is pressed while focus is on this control. (Devralındığı yer: Control) |
QueryAccessibilityHelp |
AccessibleObjectErişilebilirlik uygulamalarına yardım sağlarken oluşur.Occurs when AccessibleObject is providing help to accessibility applications. (Devralındığı yer: Control) |
QueryContinueDrag |
Sürükle ve bırak işlemi sırasında oluşur ve sürükleme kaynağının, sürükle ve bırak işleminin iptal edilip edilmeyeceğini belirlemesine olanak tanır.Occurs during a drag-and-drop operation and enables the drag source to determine whether the drag-and-drop operation should be canceled. (Devralındığı yer: Control) |
RegionChanged |
RegionÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the Region property changes. |
RendererChanged |
RendererÖzelliğin değeri değiştiğinde gerçekleşir.Occurs when the value of the Renderer property changes. (Devralındığı yer: ToolStrip) |
Resize |
Denetim yeniden boyutlandırıldığında gerçekleşir.Occurs when the control is resized. (Devralındığı yer: Control) |
RightToLeftChanged |
RightToLeftÖzellik değeri değiştiğinde gerçekleşir.Occurs when the RightToLeft property value changes. (Devralındığı yer: Control) |
Scroll |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. |
SizeChanged |
SizeÖzellik değeri değiştiğinde gerçekleşir.Occurs when the Size property value changes. (Devralındığı yer: Control) |
StyleChanged |
ToolStripLayoutStyleStil değiştiğinde gerçekleşir.Occurs when the ToolStripLayoutStyle style changes. |
SystemColorsChanged |
Sistem renkleri değiştiğinde oluşur.Occurs when the system colors change. (Devralındığı yer: Control) |
TabIndexChanged |
Bu olay bu sınıfla ilgili değildir.This event is not relevant to this class. |
TabStopChanged |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. |
TextChanged |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. |
Validated |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. |
Validating |
Bu olay bu sınıfla ilgili değildir.This event is not relevant for this class. |
VisibleChanged |
VisibleÖzellik değeri değiştiğinde gerçekleşir.Occurs when the Visible property value changes. (Devralındığı yer: Control) |
Belirtik Arabirim Kullanımları
IDropTarget.OnDragDrop(DragEventArgs) |
Olayını oluşturur DragDrop .Raises the DragDrop event. (Devralındığı yer: Control) |
IDropTarget.OnDragEnter(DragEventArgs) |
Olayını oluşturur DragEnter .Raises the DragEnter event. (Devralındığı yer: Control) |
IDropTarget.OnDragLeave(EventArgs) |
Olayını oluşturur DragLeave .Raises the DragLeave event. (Devralındığı yer: Control) |
IDropTarget.OnDragOver(DragEventArgs) |
Olayını oluşturur DragOver .Raises the DragOver event. (Devralındığı yer: Control) |