0

TabControlのImageListの画像アイコンをテキストの右側に揃えることはできますか?

現在、画像アイコンは左側に配置され、テキストはその右側に配置されています。テキストは左側に、アイコンはその右側に配置することをお勧めします。これは可能ですか?

4

1 に答える 1

2

TabPage を自分で描画しない限り、それはできません。そのためには、 toのDrawModeプロパティを設定してから、イベント を処理する必要があります。これは非常に簡単な例です。必要に応じて、選択したタブの背景色を変更するコードを追加して、値を確認するだけでどのタブが選択されているかを知ることができます。TabControlOwnerDrawFixedDrawItem
e.State

private void tabControl1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
{
    // values
    TabControl tabCtrl = (TabControl)sender;
    Brush fontBrush = Brushes.Black;
    string title = tabCtrl.TabPages[e.Index].Text;
    StringFormat sf = new StringFormat();
    sf.Alignment = StringAlignment.Near;
    sf.LineAlignment = StringAlignment.Center;
    int indent = 3;
    Rectangle rect = new Rectangle(e.Bounds.X, e.Bounds.Y + indent, e.Bounds.Width, e.Bounds.Height - indent);

    // draw title
    e.Graphics.DrawString(title, tabCtrl.Font, fontBrush, rect, sf);

    // draw image if available
    if (tabCtrl.TabPages[e.Index].ImageIndex >= 0)
    {
        Image img = tabCtrl.ImageList.Images[tabCtrl.TabPages[e.Index].ImageIndex];
        float _x = (rect.X + rect.Width) - img.Width - indent;
        float _y = ((rect.Height - img.Height) / 2.0f) + rect.Y;
        e.Graphics.DrawImage(img, _x, _y);
    }
}
于 2012-04-21T18:41:27.310 に答える