使SizeToContent考虑Title

时间:2012-10-23 13:17:15

标签: wpf xaml resize title sizetocontent

这是一个非常简单的WPF窗口的XAML代码:

<Window x:Class="TitleTester.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Long, verbose, unabridged title" SizeToContent="WidthAndHeight">
    <Grid>
        <Label>Short text</Label>
    </Grid>
</Window>

当我打开此窗口时,文本Short text会完整显示;但是,标题栏只显示L...Long, verbose, unabridged title的第一个字母)。我希望打开的窗口足够宽,以显示完整的标题,而不是更宽。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:1)