c# – 如何在WIndows表单应用程序中将border应用于组合框?

前端之家收集整理的这篇文章主要介绍了c# – 如何在WIndows表单应用程序中将border应用于组合框?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中,我添加了ComboBox,如下图所示

我已将组合框属性设置为

cmbDatefilter.FlatStyle = System.Windows.Forms.FlatStyle.Flat;

而现在我的问题是如何将边框样式设置为组合框以使其看起来不错.

我在下面的链接验证

Flat style Combo box

我的问题与以下链接不同.

Generic ComboBox in Windows Forms Application

How to override UserControl class to draw a custom border?

解决方法

您可以从ComboBox继承并覆盖WndProc并处理WM_PAINT消息并为组合框绘制边框:


public class FlatCombo:ComboBox
{
    private const int WM_PAINT = 0xF; 
    private int buttonWidth= SystemInformation.HorizontalScrollBarArrowWidth;
    protected override void WndProc(ref Message m)
    {
        base.WndProc(ref m);
        if (m.Msg == WM_PAINT)
        {
            using (var g = Graphics.FromHwnd(Handle))
            {
                using (var p = new Pen(this.ForeColor))
                {
                    g.DrawRectangle(p,Width - 1,Height - 1);
                    g.DrawLine(p,Width - buttonWidth,Height);
                }
            }
        }
    }
}

注意:

>在上面的示例中,我使用前景颜色作为边框,您可以添加BorderColor属性或使用其他颜色.
>如果您不喜欢下拉按钮的左边框,则可以注释DrawLine方法.
>当控件是RightToLeft(0,buttonWidth)到(Height,buttonWidth)时,你需要画线
>要了解有关如何渲染平面组合框的更多信息,您可以查看内部ComboBox.FlatComboAdapter类.Net Framework的源代码.

原文链接:https://www.f2er.com/csharp/238941.html

猜你在找的C#相关文章