ToolStripGripRenderEventArgs.GripDisplayStyle Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает стиль, показывающий, будет ли маркер перемещения отображаться вертикального или горизонтально.
public:
property System::Windows::Forms::ToolStripGripDisplayStyle GripDisplayStyle { System::Windows::Forms::ToolStripGripDisplayStyle get(); };
public System.Windows.Forms.ToolStripGripDisplayStyle GripDisplayStyle { get; }
member this.GripDisplayStyle : System.Windows.Forms.ToolStripGripDisplayStyle
Public ReadOnly Property GripDisplayStyle As ToolStripGripDisplayStyle
Значение свойства
Одно из значений перечисления ToolStripGripDisplayStyle.
Примеры
В следующем примере кода показано использование этого элемента. В этом примере обработчик событий сообщает о возникновении ToolStripRenderer.RenderGrip события. Этот отчет поможет вам узнать, когда происходит событие, и может помочь в отладке.
Чтобы выполнить пример кода, вставьте его в проект, содержащий экземпляр типа, наследуемого от ToolStripRenderer, например ToolStripSystemRenderer или ToolStripProfessionalRenderer. Затем присвойте экземпляру ToolStripRenderer1
имя и убедитесь, что обработчик событий связан с событием ToolStripRenderer.RenderGrip .
private void ToolStripRenderer1_RenderGrip(Object sender, ToolStripGripRenderEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "GripBounds", e.GripBounds );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "GripDisplayStyle", e.GripDisplayStyle );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "GripStyle", e.GripStyle );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "AffectedBounds", e.AffectedBounds );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "BackColor", e.BackColor );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ToolStrip", e.ToolStrip );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "ConnectedArea", e.ConnectedArea );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "RenderGrip Event" );
}
Private Sub ToolStripRenderer1_RenderGrip(sender as Object, e as ToolStripGripRenderEventArgs) _
Handles ToolStripRenderer1.RenderGrip
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "GripBounds", e.GripBounds)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "GripDisplayStyle", e.GripDisplayStyle)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "GripStyle", e.GripStyle)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "AffectedBounds", e.AffectedBounds)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "BackColor", e.BackColor)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ToolStrip", e.ToolStrip)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "ConnectedArea", e.ConnectedArea)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"RenderGrip Event")
End Sub