wpf DynamicResource的ResourceKey值进行绑定

wpf 中的DynamicResource 的ResourceKey不支持绑定的,因为它不是个DependencyProperty,但又想动态指定ResourceKey

场景:

Name属性有多个值 zhangsan,lisi,wangwu

对应不同资源文件中的

csharp 复制代码
//  style1
        <sys:String x:Key="zhangsan">张三</sys:String>
        <sys:String x:Key="lisi">李四</sys:String>
        <sys:String x:Key="wangwu">王五</sys:String>
// 另一个文件中的 style2        
		<sys:String x:Key="zhangsan">ZhangSan</sys:String>
        <sys:String x:Key="lisi">LiSi</sys:String>
        <sys:String x:Key="wangwu">WangWu</sys:String>

实现动态改变Name的同时进行动态资源绑定

csharp 复制代码
<ItemsControl ItemsSource="{Binding StudentList}">
            <ItemsControl.ItemTemplate>
                    <HierarchicalDataTemplate>
                    <TextBlock>
                        <TextBlock.Text>
                            <MultiBinding Converter="{StaticResource dynBindingConv}" ConverterParameter="TextProperty">
                                <Binding Path="Name"/>
                                <Binding RelativeSource="{RelativeSource Self}"/>
                            </MultiBinding>
                        </TextBlock.Text>
                    </TextBlock>
                </HierarchicalDataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>

可以通过Converter实现,stackoverflow上有个实现方法点击跳转

但工作量太大下面是简陋但能实现效果的方法

xaml:

csharp 复制代码
<converter:DynamicBindingConverter x:Key="dynBindingConv"/>

<TextBlock>
            <TextBlock.Text>
                <MultiBinding Converter="{StaticResource dynBindingConv}" ConverterParameter="TextProperty">
                    <Binding Path="Name"/>
                    <Binding RelativeSource="{RelativeSource Self}"/>
                </MultiBinding>
            </TextBlock.Text>
</TextBlock>
csharp 复制代码
public class DynamicBindingConverter: IMultiValueConverter
    {
        public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
        {
            string key = values[0].ToString();
            var control = values[1] as FrameworkElement;
            string property = parameter.ToString();

            Type type = control.GetType();
            FieldInfo field = type.GetField(property, BindingFlags.Public | BindingFlags.Static);
            DependencyProperty d_property = (DependencyProperty)field.GetValue(null);
            var dynamicResource = new DynamicResourceExtension(key);
            var resourceReferenceExpression = dynamicResource.ProvideValue(null);
            control.SetValue(d_property, resourceReferenceExpression);
            return Application.Current.Resources[key];
        }

        public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }

难点主要是通过反射得到DependencyProperty

发现有的控件找不到对应属性,是因为反射只在当前类中查找不会去父类(或者基类)中查找``对上述代码用下修改即可

csharp 复制代码
public class DynamicBindingConverter: IMultiValueConverter
    {
        public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
        {
            string key = values[0].ToString();
            var control = values[1] as FrameworkElement;
            string property = parameter.ToString();

            Type type = control.GetType();
            FieldInfo field = null;
            while (type != null)
            {
                
                field = type.GetField(property, BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Public);
                if (field != null)
                {
                    break;
                }
                type = type.BaseType;
            }
            if (field != null)
            {
                DependencyProperty d_property = (DependencyProperty)field.GetValue(null);
                var dynamicResource = new DynamicResourceExtension(key);
                var resourceReferenceExpression = dynamicResource.ProvideValue(null);
                control.SetValue(d_property, resourceReferenceExpression);
                return Application.Current.Resources[key];
            }
            else
            {
                return Application.Current.Resources["none"];
            }
            
        }

        public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
相关推荐
九鼎科技-Leo11 小时前
什么是 WPF 中的依赖属性?有什么作用?
windows·c#·.net·wpf
麻花201321 小时前
C#之WPF的C1FlexGrid空间的行加载事件和列事件变更处理动态加载的枚举值
开发语言·c#·wpf
lcintj21 小时前
【WPF】Prism学习(九)
学习·wpf·prism
界面开发小八哥1 天前
界面控件DevExpress WPF中文教程:网格视图数据布局的列和卡片字段
wpf·界面控件·devexpress·ui开发·用户界面
△曉風殘月〆1 天前
如何在WPF中嵌入其它程序
wpf
Crazy Struggle1 天前
功能齐全的 WPF 自定义控件资源库(收藏版)
.net·wpf·ui控件库
shepherd枸杞泡茶1 天前
WPF动画
c#·.net·wpf
lcintj1 天前
【WPF】Prism学习(十)
学习·wpf·prism
wyh要好好学习1 天前
WPF数据加载时添加进度条
ui·wpf
code_shenbing1 天前
跨平台WPF框架Avalonia教程 三
前端·microsoft·ui·c#·wpf·跨平台·界面设计