ToolStripItem.DisplayStyle Properti

Definisi

Mendapatkan atau mengatur apakah teks dan gambar ditampilkan pada 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

Nilai Properti

Salah ToolStripItemDisplayStyle satu nilai. Defaultnya adalah ImageAndText .

Contoh

Contoh kode berikut menunjukkan Imageproperti , , ImageAlignDisplayStyle , dan TextAlign untuk ToolStripButton. Contoh ini adalah bagian dari contoh yang lebih besar yang tersedia dalam ToolStripButton gambaran umum kelas.

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

Keterangan

Gunakan DisplayStyle untuk mengatur nilai properti Teks dan Gambar item sambil hanya menampilkan apa yang Anda inginkan. Ini biasanya digunakan untuk hanya mengubah gaya tampilan saat menampilkan item yang sama dalam konteks yang berbeda.

Berlaku untuk