几何 JumpTask.IconResourcePath
Geometry to JumpTask.IconResourcePath
我想知道,有没有一种方法可以 将 JumpTask.IconResourcePath 与 Geometry 绑定。无需创建 ico 或 dll 文件来读取它。谢谢。
我的代码:
<Application x:Class="Example.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SecureVast"
StartupUri="MainWindow.xaml">
<JumpList.JumpList>
<JumpList ShowRecentCategory="True"
ShowFrequentCategory="True">
<JumpTask Title="Example" Description="Open Example App." ApplicationPath="C:\Windows\notepad.exe"
IconResourcePath="{Binding ExampleGeometry}"/>
<!-- Note: This is not actual working code, this is just what I want to achive -->
</JumpList.JumpList>
</Application>
简短回答:不,IconResourcePath
是一个 string
属性,应该设置为 路径 到包含图标。
您不能将其设置为 Geometry
。
我想知道,有没有一种方法可以 将 JumpTask.IconResourcePath 与 Geometry 绑定。无需创建 ico 或 dll 文件来读取它。谢谢。
我的代码:
<Application x:Class="Example.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SecureVast"
StartupUri="MainWindow.xaml">
<JumpList.JumpList>
<JumpList ShowRecentCategory="True"
ShowFrequentCategory="True">
<JumpTask Title="Example" Description="Open Example App." ApplicationPath="C:\Windows\notepad.exe"
IconResourcePath="{Binding ExampleGeometry}"/>
<!-- Note: This is not actual working code, this is just what I want to achive -->
</JumpList.JumpList>
</Application>
简短回答:不,IconResourcePath
是一个 string
属性,应该设置为 路径 到包含图标。
您不能将其设置为 Geometry
。