ToolStripItem.DisplayStyle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
テキストおよびイメージが 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
プロパティ値
ToolStripItemDisplayStyle 値のいずれか 1 つ。 既定値は、 ImageAndText です。
例
次のコード例ではImageTextAlign ImageAlignDisplayStyle ToolStripButton、. この例は、クラスの概要で使用できるより大きな例の ToolStripButton 一部です。
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
注釈
目的のアイテムのみを表示しながら、アイテムの Text プロパティと Image プロパティの値を設定するために使用 DisplayStyle します。 これは、通常、同じ項目を異なるコンテキストで表示するときに、表示スタイルのみを変更するために使用されます。