Exemplo n.º 1
0
 void EditName(CollectionLibraryItemViewModel collection)
 {
     _dialogManager.MessageBox(
         new MessageBoxDialogParams(
             "You need to name your collection before you can Publish it!",
             "Collection name missing")).WaitSpecial();
     collection.IsEditing = true;
 }
Exemplo n.º 2
0
 void EditDescription(CollectionLibraryItemViewModel collection)
 {
     _dialogManager.MessageBox(
         new MessageBoxDialogParams(
             "You need to add a description to your collection before you can Publish it!",
             "Collection description missing")).WaitSpecial();
     collection.IsEditingDescription = true;
 }
Exemplo n.º 3
0
 void EditName(CollectionLibraryItemViewModel collection) {
     _dialogManager.MessageBoxSync(
         new MessageBoxDialogParams(
             "You need to name your collection before you can Publish it!",
             "Collection name missing"));
     collection.IsEditing = true;
 }
Exemplo n.º 4
0
 void EditDescription(CollectionLibraryItemViewModel collection) {
     _dialogManager.MessageBoxSync(
         new MessageBoxDialogParams(
             "You need to add a description to your collection before you can Publish it!",
             "Collection description missing"));
     collection.IsEditingDescription = true;
 }