public PersonalProperyShower(PersonalProperty prop, PPersonalForm parent)
 {
     this.InitializeComponent();
     XPropertyValue.IsReadOnly = true;
     Property = prop;
     _parent  = parent;
 }
 public PropertyShower(string name, object value)
 {
     _property = new PersonalProperty(name,value,PropertyType.Unknown);
     this.InitializeComponent();
     PName = name;
     PValue = value;
 }
		public PersonalProperyShower(PersonalProperty prop,PPersonalForm parent)
		{         
			this.InitializeComponent();
            XPropertyValue.IsReadOnly = true;
            Property = prop;
            _parent = parent;
		}
Exemple #4
0
 public PropertyShower(string name, object value)
 {
     _property = new PersonalProperty(name, value, PropertyType.Unknown);
     this.InitializeComponent();
     PName  = name;
     PValue = value;
 }
Exemple #5
0
 public void PropertyChanged(PersonalProperty prop)
 {
     DataBaseInterface.SetPersonalProperty(
         DataSaver.UId,
         DataSaver.PasswordHash,
         prop.Name, prop.Value);
 }
 public PropertyShowerMultiline(string name, string value)
 {
     _property = new PersonalProperty();
     this.InitializeComponent();
     PName  = name;
     PValue = value;
 }
 public PropertyShowerMultiline(string name, string value)
 {
     _property = new PersonalProperty();
     this.InitializeComponent();
     PName = name;
     PValue = value;
 }
 public static void RemoveContact(PersonalProperty personalProperty)
 {
 }
 public static void RemoveContact(PersonalProperty personalProperty)
 {
     
 }
 public void PropertyChanged(PersonalProperty prop)
 {
     DataBaseInterface.SetPersonalProperty(
         DataSaver.UId,
         DataSaver.PasswordHash,
         prop.Name, prop.Value);
 }
Exemple #11
0
 public PropertyShower()
 {
     _property = new PersonalProperty();
     this.InitializeComponent();
 }
 public PropertyShower()
 {
     _property = new PersonalProperty();
     this.InitializeComponent();
 }