示例#1
0
 private void ShowInfoMessageOnNativeThread(object sender, UserInformationEventArgs e)
 {
     MessageBox.Show(e.UserInformation.Message, e.UserInformation.Label, e.UserInformation.Buttons, e.UserInformation.Icon);
 }
示例#2
0
 private void InteractionServiceUserInformationReceived(object sender, UserInformationEventArgs e)
 {
     Invoke(new NativeThreadFunctinUserInfo(ShowInfoMessageOnNativeThread), this, e);
 }