来自 System.Drawing.Color 的 System.Drawing.Brush

发布于 2024-11-02 16:59:21 字数 268 浏览 0 评论 0原文

我正在为我们公司开发一个 WinForm 打印应用程序。

打印文档时,我需要获取文档上每个控件的 System.Drawing.Color 属性并创建一个 System.Drawing.Brush 对象来绘制它。

有没有办法将 System.Drawing.Color 值转换为 System.Drawing.Brush 值?

注意:我尝试研究 System.Windows.Media.SolidColorBrush() 方法,但它似乎没有帮助。

I'm developing a WinForm Printing application for our company.

When the document is printed, I need to take the System.Drawing.Color property of each Control on the document and create a System.Drawing.Brush object to draw it.

Is there a way to convert the System.Drawing.Color value to a System.Drawing.Brush value?

NOTE: I've tried looking into the System.Windows.Media.SolidColorBrush() method, but it does not seem to be helpful.

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

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

发布评论

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

评论(2

倾听心声的旋律 2024-11-09 16:59:21

使用 SolidBrush 类:

using (SolidBrush brush = new SolidBrush(yourColor)) {
    // ...
}

Use the SolidBrush class:

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