绘制系统焦点矩形c#

时间:2013-07-09 16:32:40

标签: c# .net winforms user-controls gdi

如何使用gdi,C#绘制系统焦点矩形?我主要对Windows 7上常见的listview控件中的玻璃效果焦点矩形感兴趣。提前感谢。

1 个答案:

答案 0 :(得分:0)

我使用Panel视为ListViewItem并在此面板上绘图以演示应该做什么,它看起来几乎就像在Windows 7中使用的ListView中的焦点条目。

private void panel1_Paint(object sender, PaintEventArgs e)
    {            
        using (System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(panel1.ClientRectangle, Color.FromArgb(100, 204, 222,246), Color.FromArgb(190,220,255) , 90))
        {
            e.Graphics.FillRectangle(brush,new Rectangle(2,2,panel1.ClientSize.Width - 4, panel1.ClientSize.Height - 4));
        }
        ControlPaint.DrawBorder(e.Graphics, panel1.ClientRectangle, Color.FromArgb(133, 164, 202), ButtonBorderStyle.Solid);
        ControlPaint.DrawBorder(e.Graphics, new Rectangle(1,1, panel1.ClientSize.Width - 2, panel1.ClientSize.Height - 2), 
            Color.FromArgb(100,220,240,255), 1, ButtonBorderStyle.Solid,
            Color.White, 1, ButtonBorderStyle.Solid,
            Color.FromArgb(100,220,240,255), 1, ButtonBorderStyle.Solid,
            Color.FromArgb(100,204,222,250), 1, ButtonBorderStyle.Solid);
        StringFormat sf = new StringFormat() { LineAlignment = StringAlignment.Center };
        e.Graphics.DrawString("I love .NET", panel1.Font, Brushes.Black, panel1.ClientRectangle, sf);
    } 

以下是比较两个条目的屏幕截图: enter image description here