예제 #1
0
 /// <summary>
 /// Provides a deterministic way to create the AttributePopupVMStatic property
 /// </summary>
 public static void CreateAttributePopupVM()
 {
     if (attributePopupVM == null)
     {
         attributePopupVM = new AttributePopupViewModel();
     }
 }
예제 #2
0
 /// <summary>
 /// Provides a deterministic way to delete the AttributePopupVMStatic property
 /// </summary>
 public static void ClearAttributePopupVM()
 {
     attributePopupVM.Cleanup();
     attributePopupVM = null;
 }