方法 : Windows フォーム内の ToolStrip テキストとイメージの外観を変更する
更新 : 2007 年 11 月
テキストとイメージを ToolStripItem に表示するかどうか、また、テキスト、イメージ、および ToolStrip の相対位置を制御できます。
ToolStripItem に表示するものを定義するには
DisplayStyle プロパティに目的の値を設定します。設定できる値は、Image、ImageAndText、None、および Text です。既定値は ImageAndText です。
ToolStripButton2.DisplayStyle = _ System.Windows.Forms.ToolStripItemDisplayStyle.Image
toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
ToolStripItem 上でテキストを揃えるには
TextAlign プロパティに目的の値を設定します。設定できる値は、Top、Middle、Bottom と Left、Center、Right の組み合わせです。既定値は MiddleCenter です。
ToolStripSplitButton1.TextAlign = _ System.Drawing.ContentAlignment.MiddleRight
toolStripSplitButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
ToolStripItem 上でイメージを揃えるには
ImageAlign プロパティに目的の値を設定します。設定できる値は、Top、Middle、Bottom と Left、Center、Right の組み合わせです。既定値は MiddleLeft です。
ToolStripSplitButton1.ImageAlign = _ System.Drawing.ContentAlignment.MiddleRight
toolStripSplitButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
ToolStripItem のテキストとイメージの相対的な表示位置を定義するには
TextImageRelation プロパティに目的の値を設定します。設定できる値は、ImageAboveText、ImageBeforeText、Overlay、TextAboveImage、および TextBeforeImage です。既定値は ImageBeforeText です。
ToolStripButton1.TextImageRelation = _ System.Windows.Forms.TextImageRelation.ImageAboveText
toolStripButton1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;