WPF 工具包自动完成框中可调整大小的弹出窗口

发布于 2024-12-27 22:07:33 字数 68 浏览 0 评论 0原文

有没有办法使 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 技术交流群。

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

发布评论

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

评论(1

混浊又暗下来 2025-01-03 22:07:33

这是一个解决方案

http://kentb.blogspot.co.at /2007/04/resizer-wpf-control.html

<kb:Resizer xmlns:kb="http://kent.boogaart/controls">
    Content
</kb:Resizer> 

Resizer 控件为您放置在其中的内容添加了调整大小行为。默认模板使用 ResizeGrip,并允许用户拖动夹点以调整内容大小。例如,以下是如何向 TextBox 添加调整大小行为(从此处假定 XML 命名空间映射):

<kb:Resizer>
   <TextBox>My TextBox</TextBox>
</kb:Resizer> 

Here is a solution

http://kentb.blogspot.co.at/2007/04/resizer-wpf-control.html

<kb:Resizer xmlns:kb="http://kent.boogaart/controls">
    Content
</kb:Resizer> 

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):

<kb:Resizer>
   <TextBox>My TextBox</TextBox>
</kb:Resizer> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文