WPF 工具包自动完成框中可调整大小的弹出窗口
有没有办法使 WPF 工具包自动完成框的弹出窗口可调整大小(通过添加调整大小抓手)?但首先,可以在xaml文件中访问它吗?
Is there a way to make the popup of WPF toolkit autocompletebox resizable (by adding the resize gripper)? But firstly, can it be accessed in the xaml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个解决方案
http://kentb.blogspot.co.at /2007/04/resizer-wpf-control.html
Resizer 控件为您放置在其中的内容添加了调整大小行为。默认模板使用 ResizeGrip,并允许用户拖动夹点以调整内容大小。例如,以下是如何向 TextBox 添加调整大小行为(从此处假定 XML 命名空间映射):
Here is a solution
http://kentb.blogspot.co.at/2007/04/resizer-wpf-control.html
The Resizer control adds resizing behaviour to the content you place within it. The default template uses a ResizeGrip and allows the user to drag the grip in order to resize the content. For example, here is how you might add resizing behaviour to a TextBox (XML namespace mapping assumed from hereon in):