我正在使用teleik RadWindow对象,我使用RadWindow.HeaderTemplate在标题中设置图标和文本块。
当我按下Alt + Tab显示打开的winsows时,我会看到标题为" RadWindow"的窗口。
如何将标题设置为文本块的内容?
我的代码:
<telerik:RadWindow.HeaderTemplate>
<ItemContainerTemplate>
<StackPanel>
<Image source="../gears.ico"/>
<TextBlock Text="settings"/>
</StackPanel>
</ItemContainerTemplate>
</telerik:RadWindow.HeaderTemplate>
答案 0 :(得分:0)
这应该可以解决问题:)
> TextBlock textBlock = new TextBlock();
> textBlock.Text = "My RadWindow";
> textBlock.HorizontalAlignment = HorizontalAlignment.Center;
> RadWindow radWindow = new RadWindow();
> radWindow.Width = 400;
> radWindow.Height = 300;
> radWindow.Header = textBlock;