获取活动表单标题颜色
如何获取 winforms 中活动表单标题的颜色?
(没有API)
How can i get the color of the caption of the active form in winforms?
(Without Api)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取 winforms 中活动表单标题的颜色?
(没有API)
How can i get the color of the caption of the active form in winforms?
(Without Api)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
SystemColors
类包含与各种系统颜色相对应的许多属性 。 您想要的是SystemColors.ActiveCaption< /代码>
。
The
SystemColors
class contains a number of properties corresponding to various system colors. The one you want isSystemColors.ActiveCaption
.