Exemplo n.º 1
0
        public void SetBinding(object o)
        {
            if (Binding != null)
            {
                Binding.OnChanged -= Binding_OnChanged;
            }

            var o_ = o as Data.Value.String;

            Binding = o_;

            if (Binding != null)
            {
                Binding.OnChanged += Binding_OnChanged;
            }
        }
Exemplo n.º 2
0
        public void SetBinding(object o)
        {
            var o_ = o as Data.Value.String;

            Binding = o_;
        }
Exemplo n.º 3
0
 public override void OnDisposed()
 {
     FixValue();
     Binding = null;
 }