控件重绘

Posted 成为自己最想成为的那种人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控件重绘相关的知识,希望对你有一定的参考价值。

1. 设置控件DrawMode属性为OwnerDrawFixed,编辑控件DrawItem事件

 

重绘tabControl——选项卡控件

    string text = ((TabControl)sender).TabPages[e.Index].Text;
    SolidBrush brush = new SolidBrush(Color.Black);
    StringFormat sf = new StringFormat(StringFormatFlags.DirectionRightToLeft);
    sf.LineAlignment = StringAlignment.Center;
    sf.Alignment = StringAlignment.Center;
    e.Graphics.DrawString(text, SystemInformation.MenuFont, brush, e.Bounds, sf);

重绘listBox控件(注意修改涉及控件名的地方)

    e.DrawBackground();
    e.DrawFocusRectangle();

    //让文字位于Item的中间
    float difH = (e.Bounds.Height - e.Font.Height) / 2;    //字体垂直方向居中
    RectangleF rf = new RectangleF(e.Bounds.X, e.Bounds.Y + difH, e.Bounds.Width, e.Font.Height);
    e.Graphics.DrawString(listBox1.Items[e.Index].ToString(), e.Font, new SolidBrush(e.ForeColor), rf);

以上是关于控件重绘的主要内容,如果未能解决你的问题,请参考以下文章

winform重绘控件边框

更改对齐方式后如何重绘列表控件?

c#-winform重绘Tabcontrol控件,标签带Logo图标

关于CEdit控件的透明(重绘)

如何通知 CTabCtrl 中的所有控件它们应该重绘啥(应该改变它们的大小)?

一个 MFC/Win32 控件似乎让我的整个桌面重绘