RadWindow图标未显示在任务栏中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RadWindow图标未显示在任务栏中相关的知识,希望对你有一定的参考价值。
similar question错误地标记为重复。
given answer有效,但它不是XAML-ish所做的。 Telerik建议我在下面发表自我回复帖子。
答案
在Telerik example,MainWindow
有三条线如下;
xmlns:navigation="clr-namespace:Telerik.Windows.Controls.Navigation;assembly=Telerik.Windows.Controls.Navigation"
navigation:RadWindowInteropHelper.ShowInTaskbar="True"
navigation:RadWindowInteropHelper.Icon="icon.ico"
当然,你应该准备icon.ico
文件。
完整的xaml代码如下所示。
<telerik:RadWindow x:Class="RadWindowAsMainWindow.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:navigation="clr-namespace:Telerik.Windows.Controls.Navigation;assembly=Telerik.Windows.Controls.Navigation"
navigation:RadWindowInteropHelper.ShowInTaskbar="True"
navigation:RadWindowInteropHelper.Icon="icon.ico"
Header="MainWindow" Height="350" Width="525">
<Grid>
<TextBlock Text="The application is shown inside RadWindow." />
</Grid>
</telerik:RadWindow>
以上是关于RadWindow图标未显示在任务栏中的主要内容,如果未能解决你的问题,请参考以下文章