UserControl 宽度为 Nan,而 ActualWidth 设置为其放置的列
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将使控件不会根据其所在的容器进行拉伸,如果
Width
设置为Auto
,则会根据其内容进行扩展。MSDN 提供了关于对齐、边距和填充的概述,其中可能包括协助。
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 toAuto
.MSDN provides an overview on Alignment, Margins, and Padding which may be of assistance.