UserControl 宽度为 Nan,而 ActualWidth 设置为其放置的列

发布于 2024-10-20 01:49:28 字数 153 浏览 3 评论 0原文

我有一个 UserControl,我没有设置它的宽度/高度,UserControl 在 StackPanel 内有 2 个 TextBox。 当我将它放在 Width="Auto" 的列中时,控件会拉伸以填充整个列,而 2 个文本框保持其宽度(期望) 我想将控件宽度保持为内容宽度,该怎么做?

I have a UserControl, I do not set it's Width / Height, the UserControl has 2 TextBox inside a StackPanel.
when I place it in a Column where it's Width="Auto", the control stretches to fill the entire column, while the 2 TextBox maintain their Width (desire)
I want to keep the Control Width to it's Content Width, how to I do that ?

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

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

发布评论

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

评论(1

寄与心 2024-10-27 01:49:28
HorizontalAlignment="Left"

这将使控件不会根据其所在的容器进行拉伸,如果 Width 设置为 Auto,则会根据其内容进行扩展。

MSDN 提供了关于对齐、边距和填充的概述,其中可能包括协助。

HorizontalAlignment="Left"

This will keep the Control from stretching based on the container which it resides and instead will expand based on its contents if the Width is set to Auto.

MSDN provides an overview on Alignment, Margins, and Padding which may be of assistance.

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