Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个现有的 Windows 图标 (.ico) 文件,我想在 WPF 应用程序中使用它。有没有什么好的工具可以将 .ico 图标转换为 XAML 路径几何?
XAML 路径是矢量格式,ICO 是位图,因此无法进行简单的转换。
您可以尝试在 Inkscape 等矢量软件中打开 ICO,使用 Paths 对其进行概述,然后将其导出为 XAML。
如果路径不是必需的,您也可以直接在 WPF 应用程序中使用 .ico:只需将其设置为 Image 的 Source。
<Image Source="test.ico"/>