ToolStripItem.DisplayStyle Propriedade

Definição

Obtém ou define se texto e imagens são exibidos em um ToolStripItem.

public:
 virtual property System::Windows::Forms::ToolStripItemDisplayStyle DisplayStyle { System::Windows::Forms::ToolStripItemDisplayStyle get(); void set(System::Windows::Forms::ToolStripItemDisplayStyle value); };
public virtual System.Windows.Forms.ToolStripItemDisplayStyle DisplayStyle { get; set; }
member this.DisplayStyle : System.Windows.Forms.ToolStripItemDisplayStyle with get, set
Public Overridable Property DisplayStyle As ToolStripItemDisplayStyle

Valor da propriedade

ToolStripItemDisplayStyle

Um dos valores de ToolStripItemDisplayStyle. O padrão é ImageAndText.

Exemplos

O exemplo de código a seguir demonstra as Imagepropriedades e TextAlign ImageAlignDisplayStyle as propriedades de um .ToolStripButton Este exemplo faz parte de um exemplo maior disponível na visão geral da ToolStripButton classe.

this.toolStripButton1.Image = Bitmap.FromFile("c:\\NewItem.bmp");
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText;
this.toolStripButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Text = "&New";
this.toolStripButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
Me.toolStripButton1.Image = Bitmap.FromFile("c:\NewItem.bmp")
Me.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText
Me.toolStripButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.toolStripButton1.Name = "toolStripButton1"
Me.toolStripButton1.Text = "&New"
Me.toolStripButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight

Comentários

Use DisplayStyle para definir os valores das propriedades Texto e Imagem de um item enquanto exibe apenas o que você deseja. Isso normalmente é usado para alterar o estilo de exibição ao mostrar o mesmo item em um contexto diferente.

Aplica-se a