DrawReversibleFrame 前景绘制
我的 MainForm 上有一个 PictureBox,
如果我尝试 DrawReversibleFrame,它总是会在 PictureBox 后面的背景上绘制矩形框架
有没有办法在前景上绘制矩形框架?
点网 3.5
Windows 7 x64
I have a PictureBox on my MainForm,
and if I try to DrawReversibleFrame, it will always draw the rectangular frame on the background behind the PictureBox
Is there a way I can draw the rectangle frame on the foreground?
DotNet 3.5
Windows 7 x64
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 PictureBox 添加 OnPaint 事件并在其中使用 DrawReversibleFrame。
Add an OnPaint event for the PictureBox and use DrawReversibleFrame there.