是否可以将 TabControl 的 ImageList 上的图像图标对齐到文本的右侧?
现在,图像图标放在左边,文本放在右边。我希望文本位于左侧,而图标位于右侧。这可能吗?
是否可以将 TabControl 的 ImageList 上的图像图标对齐到文本的右侧?
现在,图像图标放在左边,文本放在右边。我希望文本位于左侧,而图标位于右侧。这可能吗?
除非您自己绘制 TabPage,否则您不能这样做。为此,您需要设置 to 的属性DrawMode
,然后处理事件。
这是一个非常简单的示例,如果您愿意,可以添加一些代码来更改所选选项卡的背景颜色,要知道选择了哪个选项卡,只需检查值:TabControl
OwnerDrawFixed
DrawItem
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);
}
}