gpt4 book ai didi

c# - 序列化 GradientBrush

转载 作者:太空宇宙 更新时间:2023-11-03 21:39:14 25 4
gpt4 key购买 nike

我正在尝试使用序列化保存 Brush 对象,但出现以下错误:

Type 'System.Windows.Media.LinearGradientBrush' in Assembly 'PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' is not marked as serializable

如何将 Brush 对象保存到文件中?

最佳答案

试试这个...

var brush = new LinearGradientBrush(new GradientStopCollection(
new GradientStop[] { new GradientStop(Colors.Blue, 2.0), new GradientStop(Colors.Red, 3.0) }));

using (var outfile = File.CreateText("Brush.xaml"))
{
XamlWriter.Save(brush, outfile);
}

产生以下内容:

<LinearGradientBrush xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<LinearGradientBrush.GradientStops>
<GradientStop Color="#FF0000FF" Offset="2" />
<GradientStop Color="#FFFF0000" Offset="3" />
</LinearGradientBrush.GradientStops>
</LinearGradientBrush>

关于c# - 序列化 GradientBrush,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20203077/

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