set => SetValue(IsActiveProperty, value);
Beispiel #2
0
 get => (Boolean)GetValue(IsActiveProperty); set => SetValue(IsActiveProperty, value);
Beispiel #3
0
 set => this.SetValue(IsActiveProperty, value);
Beispiel #4
0
 /// <summary>
 /// Sets IsActive without notifying parent.
 /// </summary>
 public virtual void SetIsActive(bool isActive)
 {
     IsActiveProperty.SetValue(this, isActive, false);
     IsActiveChanged(false);
 }
 set => SetValue(IsActiveProperty, BooleanBoxes.Box(value));