gpt4 book ai didi

wpf - 在WPF中使用矢量图像的最佳方法?

转载 作者:行者123 更新时间:2023-12-03 21:24:15 24 4
gpt4 key购买 nike

我正在寻找一种在XAML中添加矢量文件(EPS或SVG)的好方法。我找到了一个插件,可以将图像从Illustrator导出到XAML文件(例如MyImage.xaml),并且如果我将文件的内容复制到窗口的XAML文件中(插件链接:http://www.mikeswanson.com/XAMLExport/),它可以很好地工作。

但是,我确信存在更好的方法。例如,是否可以使用MyImage.xaml作为资源或其他东西,并将其导入描述窗口的XAML中?

最佳答案

就个人而言,如果您正在谈论在多个地方使用它,而不必每次都重复使用/重新绘制您的xaml路径。然后我将它们放进一个ContentControl之类的;

<!-- Plop this in your resource dictionary or your resource declaration -->
<Style x:Key="TheAwesomeXAMLimage" TargetType="ContentControl">
<!-- Add additional Setters Here -->
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ContentControl">

<!-- Just Paste your XAML here -->

</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

<!-- Now actually place it on your view -->
<ContentControl Style="{StaticResource TheAwesomeXAMLimage}"/>

关于wpf - 在WPF中使用矢量图像的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13292179/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com