Example #1
0
 public void DisplayPopup(string title, string content, string headerColor, Action <object> action = null, object actionParameter = null)
 {
     _popupDataViewModel.Add(title, content, headerColor, action, actionParameter);
     PopupWindow.Show();
     _methodQueue.Queue("DisplayPopups", DisplayPopups);
 }
Example #2
0
 public void DisplayPopup(string title, string content, object dataObject, string eventMessage, string headerColor)
 {
     _popupDataViewModel.Add(title, content, dataObject, eventMessage, headerColor);
     PopupWindow.Show();
     _methodQueue.Queue("DisplayPopups", DisplayPopups);
 }