• 控件重绘


    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);

  • 相关阅读:
    递归与尾递归(C语言)
    超酷算法:Levenshtein自动机
    编程面试的10大算法概念汇总
    C 语言中的指针和内存泄漏
    计算机实际上是如何工作的
    超酷算法:同型哈希
    4个Linux服务器监控工具
    2015-3-23
    2015-3-20
    2015-3-19
  • 原文地址:https://www.cnblogs.com/zhangchaoran/p/6823274.html
Copyright © 2020-2023  润新知