示例#1
0
文件: TreeNode.cs 项目: raj581/Marvin
        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
        }
示例#2
0
 public void ToggleExpandState()
 {
     Expanded = !Expanded.GetValueOrDefault(false);
 }