WPF - 将窗口大小设置为子用户控件大小

时间:2014-01-15 22:13:54

标签: c# wpf mvvm

我有一个标签控件,动态填充了包含各种大小的用户控件的标签。打开选项卡时,我希望窗口自动调整大小,使其具有有效用户控件的大小。有干净的方法吗?

我正在使用标准的mvvm模式。

1 个答案:

答案 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>