public void ToggleExpandState() { #if TARGET_JVM //No support for Nullable<bool>.GetValueOrDefault() yet bool?value = Expanded; Expanded = value.HasValue ? !value.Value : true; #else Expanded = !Expanded.GetValueOrDefault(false); #endif }
public void ToggleExpandState() { Expanded = !Expanded.GetValueOrDefault(false); }