我有一个标签控件,动态填充了包含各种大小的用户控件的标签。打开选项卡时,我希望窗口自动调整大小,使其具有有效用户控件的大小。有干净的方法吗?
我正在使用标准的mvvm模式。
答案 0 :(得分:6)
在窗口类上使用 SizeToContent 属性。
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow"
SizeToContent='Width'>
<Grid>
<Button Width='200' Content='The Button' />
</Grid>
</Window>