public BindingToMuteProperties()
        {
            InitializeComponent();

            var dataContext = new SomeMuteDataClass();
            dataContext.MuteProperty = "Mute Property value from start";

            this.DataContext = dataContext;
        }
Ejemplo n.º 2
0
        public BindingToMuteProperties()
        {
            InitializeComponent();

            var dataContext = new SomeMuteDataClass();

            dataContext.MuteProperty = "Mute Property value from start";

            this.DataContext = dataContext;
        }