gpt4 book ai didi

c# - 有什么方法可以设置 ResourceDictionary 键以匹配类名?

转载 作者:行者123 更新时间:2023-11-30 16:40:54 24 4
gpt4 key购买 nike

我有很多<conv:[ConverterName] x:Key="[ConverterName]"/> XAML 资源字典中的条目,以及每次键与类型名称匹配时。

有没有办法让键自动从类型中获取名称,类似于nameof ?除了方便之外,我还希望代码更能防止重构。

最佳答案

在 XAML 中无法执行此操作,但您可以使用反射以编程方式执行此操作。像这样:

public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);

//get all types that implements from all assemlies in the AppDomain
foreach(var converterType in AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(a => a.GetExportedTypes())
.Where(t => typeof(IValueConverter).IsAssignableFrom(t)
&& !t.IsAbstract
&& !t.IsInterface))
{
//...and add them as resources to <Application.Resources>:
Current.Resources.Add(converterType.Name, Activator.CreateInstance(converterType));
}
}
}

关于c# - 有什么方法可以设置 ResourceDictionary 键以匹配类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50217201/

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