WinForms 的 DevX GridControl - BorderColor

发布于 2024-08-13 12:18:33 字数 138 浏览 6 评论 0原文

WinForms 的 DevExpress GridControl 控件支持 BorderStyle 属性(通过其视图),但似乎不支持 BorderColor。还是我错了?

如何设置 GridControl 边框的 BorderColor 属性?

DevExpress GridControl control for WinForms supports BorderStyle property (through it's View), but it seems like it doesn't support BorderColor. Or am I wrong?

How can I set BorderColor property for GridControl borders?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红ご颜醉 2024-08-20 12:18:33

您始终可以将 BorderStyle 设置为 NoBorder 并将 GridControl 包装在 PanelControl 内。

设置属性如下:

gridControl1.MainView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
panelControl1.LookAndFeel.UseDefaultLookAndFeel = false;
panelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
panelControl1.Appearance.BorderColor = Color.Red;
panelControl1.Appearance.Options.UseBorderColor = true;
panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;

You could always set BorderStyle to NoBorder and wrap the GridControl inside a PanelControl.

Set up the properties something like this:

gridControl1.MainView.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
panelControl1.LookAndFeel.UseDefaultLookAndFeel = false;
panelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Flat;
panelControl1.Appearance.BorderColor = Color.Red;
panelControl1.Appearance.Options.UseBorderColor = true;
panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
睡美人的小仙女 2024-08-20 12:18:33

你用皮肤吗?换肤机制很可能会覆盖您的边框颜色设置,除非您禁用它们。

Are you using skins? The skinning mechanism will most likely override your border color setting unless you disable them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文