gpt4 book ai didi

c# - 从外部文件加载元素

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

我想从外部文件加载 WPF 元素。示例我有一个这样的文件 brush.xaml:

<SolidColorBrush>Black</SolidColorBrush>

我想在我的代码中加载这个画笔:

using(FileStream stream = new FileStream("brush.xaml"))
Brush myBrush = XamlReader.Load(stream) as Brush;

我该怎么办?

最佳答案

您的代码是正确的,但在 xaml 文件中使用:

<SolidColorBrush xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
#FF0000
</SolidColorBrush>

用十六进制格式。无论如何,如果您有任何疑问,可以使用XamlWriter 进行测试。 .

关于c# - 从外部文件加载元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11144699/

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