次の方法で共有


方法: Windows フォームの ToolStrip テキストとイメージの外観を変更する

テキストと画像を ToolStripItem に表示するかどうか、およびテキストと画像を相互および ToolStripに対して相対的に配置する方法を制御できます。

ToolStripItem に表示される内容を定義するには

  • DisplayStyle プロパティを目的の値に設定します。 可能性は、ImageImageAndTextNone、および Textです。 既定値は ImageAndTextです。

    ToolStripButton2.DisplayStyle = _  
        System.Windows.Forms.ToolStripItemDisplayStyle.Image  
    
    toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;  
    

ToolStripItem でテキストを配置するには

  • TextAlign プロパティを目的の値に設定します。 上、中、下と左、中央、右の任意の組み合わせが可能です。 既定値は MiddleCenterです。

    ToolStripSplitButton1.TextAlign = _  
        System.Drawing.ContentAlignment.MiddleRight  
    
    toolStripSplitButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;  
    

ToolStripItem でイメージを配置するには

  • ImageAlign プロパティを目的の値に設定します。 上、中、下と左、中央、右の任意の組み合わせが可能です。 既定値は MiddleLeftです。

    ToolStripSplitButton1.ImageAlign = _  
        System.Drawing.ContentAlignment.MiddleRight  
    
    toolStripSplitButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;  
    

ToolStripItem のテキストと画像を相互に相対的に表示する方法を定義するには

  • TextImageRelation プロパティを目的の値に設定します。 可能性は、ImageAboveTextImageBeforeTextOverlayTextAboveImage、および TextBeforeImageです。 既定値は ImageBeforeTextです。

    ToolStripButton1.TextImageRelation = _  
        System.Windows.Forms.TextImageRelation.ImageAboveText  
    
    toolStripButton1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;  
    

関連項目