Ejemplo n.º 1
0
        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
        }
Ejemplo n.º 2
0
 public void ToggleExpandState()
 {
     Expanded = !Expanded.GetValueOrDefault(false);
 }