设置telerik radwindow标题

本文关键字:标题 radwindow telerik 设置 | 更新日期: 2023-09-27 18:21:58

Im使用teleik RadWindow对象,Im使用RadWindow.HeaderTemplate在标题中设置图标和文本块。

当我按下Alt+Tab显示打开的winsows时,我看到标题为"RadWindow"的窗口。

如何将标题设置为文本块的内容?

我的代码:

<telerik:RadWindow.HeaderTemplate>
   <ItemContainerTemplate>
      <StackPanel>
         <Image source="../gears.ico"/>
         <TextBlock Text="settings"/>
      </StackPanel>
   </ItemContainerTemplate>
</telerik:RadWindow.HeaderTemplate>

设置telerik radwindow标题

这应该可以做到:)

>     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;