代码之家  ›  专栏  ›  技术社区  ›  Mark

C#WPF以编程方式切换资源

  •  0
  • Mark  · 技术社区  · 14 年前

    例如,当我有一个

    <CustomDialog Content="{Binding Path=Name}"/>
    

    有没有可能将Binding Path=Name改为Path=Whatever,或者如何实现这样的东西?控件何时应该在运行时使用其他资源。

    --------------编辑

    例如,我有一个带字符串的资源字典

    <System:String x:Key="Message1">Message1</System:String>
    <System:String x:Key="Message2">Message2</System:String>
    <System:String x:Key="Message3">Message3</System:String>
    

    所以当我现在调用我的UserControl 去做吧自定义对话框.可见性=真;例如

    <CustomDialog Text=”” />
    

    我想定义在弹出对话框时从resourcedictionary获取哪个键。

    像这样的自定义对话框.text=Message1;但从ResourceDictionary加载

    这是可能的还是有更好的方法来做这样的事情?

    2 回复  |  直到 14 年前
        1
  •  2
  •   Eugene Cheverda    14 年前

    Name Initialize Show )方法 CustomDialog INotifyPropertyChanged :

    public class CustomDialog : INotifyPropertyChanged
    {
        //Your implementation of class goes here
    
        public void Initialize(string message)
        {
            Name = message;
            Visibility = Visibility.Visible;
        }
    
        public string Name
        {
            get {return _name;}
            set
            {
                if (_name != value)
                {
                    _name = value;
                    raiseOnPropertyChanged("Name");
                }
            }
        }
    
        //Your implementation of class goes here
    }
    

    在方法初始化中,将更新 姓名 姓名 必须筹集财产 PropertyChanged 事件,它将告诉表示绑定值已更新并在UI中反映它。

        2
  •  1
  •   Alex Paven    14 年前

    或者,如果内容具有定义良好的类型,则只需要定义具有特定数据类型的数据模板,它们将自动用于显示这些类型的对象。

    here .