调整 WPF 中控件的大小

发布于 2024-07-17 08:26:41 字数 106 浏览 6 评论 0原文

我的 wpf 表单中有一组用户控件,并且希望用户能够调整它们的大小。 每当用户单击控件时,总共会出现 8 个边界矩形,然后通过拖动其中任何一个,用户必须能够调整控件的大小。 请帮我解决这个问题。

I have a set of user controls in my wpf form and want to give ability to user to resize them. Whenever a user clicks on a control total 8 boundary rectangles should appear and then by dragging any of them, the user must be able to resize the control. Please help me on this.

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

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

发布评论

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

评论(2

缺⑴份安定 2024-07-24 08:26:41

您想要的是构建一个调整大小装饰器。 如果你用谷歌搜索你就会找到!
http://dvuyka.spaces.live.com/blog/cns! 305B02907E9BE19A!144.entry
不知道这是否是最好的样本,但无论如何这是一个好的开始!
/西蒙

What you want is to build a Resize Adorner. If you google it thou shallt find!
http://dvuyka.spaces.live.com/blog/cns!305B02907E9BE19A!144.entry
Don´t know if that´s the best sample around, but it´s a good start anyways!
/Simon

热血少△年 2024-07-24 08:26:41

我制作了一个库,它将调整大小夹点应用于任何控件。

输入图片此处描述

主页有一个快速的 gif 视频,显示其实际操作。

很简单,调用一行代码即可。

//Set max resize to 200px max height, 300px max width.
new CResizeAdorner(button1, 200, 300); 

I made a library that applies resize grips to any control.

enter image description here

Homepage has a quick gif video showing it in-action.

Very simple, just call one line of code.

//Set max resize to 200px max height, 300px max width.
new CResizeAdorner(button1, 200, 300); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文