C#中动态删除/添加(取消删除)表单区域
如何使用区域和图形路径类动态删除/添加(取消删除)表单区域
How do i dynamically removing/adding(cancel the removal) form area using region and graphics path class
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要动态更改表单的形状,只需将表单的
Region
属性设置为从GraphicsPath
创建的新Region
对象即可。例如,带有单个按钮的表单可以更改其形状,如下所示:(工作示例)To change the shape of your Form dynamically, just set the
Region
property of the form to a newRegion
object created from aGraphicsPath
. For example, a form with a single button on it could change it's shape like this: (working example)