用户控件的自动调整大小
对于 WPF 应用程序,我有一个高度 = 300 且宽度 = 300 的用户控件 MyUsrCntrl 当我将 MyUsrCntrl 放置在窗口中并将其大小设置为 600x600 时,用户控件会调整大小,但其中的控件不会调整大小, 有什么解决办法吗?
For a WPF application I have a user control MyUsrCntrl with Height=300 and Width=300
When i place MyUsrCntrl in a window and set its size to 600x600 the user control get resized but the controls in that does not get resized ,
is there any solution for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想扩展和压缩用户控件的高度和宽度,请创建父控件
Height="*"
和Width="*"
并且不要分配任何UserControl 中的控件的高度和宽度。像这样的东西:If you want to extend and compress the height and Width of your Usercontrol then make the Parent Controls
Height="*"
andWidth="*"
and don't assign any height and width to your controls present inside UserControl. Something like: