在我的应用程序中,我添加了ComboBox,如下图所示
我已将组合框属性设置为
cmbDatefilter.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
而现在我的问题是如何将边框样式设置为组合框以使其看起来不错.
我在下面的链接验证
我的问题与以下链接不同.
解决方法
您可以从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的源代码.