2

这是一个非常简单的 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)。我希望打开的窗口足够宽以显示完整标题,而不是更宽。有没有办法做到这一点?

4

1 回答 1

1

该线程应该可以帮助您解决问题:http ://social.msdn.microsoft.com/Forums/en/wpf/thread/b9ea5bf1-04f2-47c9-bf7c-a2a804e105a4

于 2012-10-23T13:47:54.800 回答