public void BeginInteraction(UserSelectInteraction interaction)
 {
     _currentInteraction = interaction;
     _userSelectorViewModel.TargetElements = Helper.CommonEventServer.CurrentTargetAccounts;
     UpdateCurrentInteraction();
 }
 private void EndInteraction()
 {
     _currentInteraction = null;
     UpdateCurrentInteraction();
 }
示例#3
0
 public InPlaceDialogMessage(UserSelectInteraction interaction) :
     this(InPlaceDialogKind.UserSelector, interaction) { }