예제 #1
0
 private void PrivateMsgSend_Click(object sender, RoutedEventArgs e)
 {
     DebugerApp.LogWhenThrow(() => DebugerApp.PrivateMsgEvent(
                                 int.Parse(PrivateMsgSubType.TextBoxText),
                                 int.Parse(PrivateMsgMsgId.TextBoxText),
                                 long.Parse(PrivateMsgFromQq.TextBoxText),
                                 PrivateMsgMsg.TextBoxText,
                                 int.Parse(PrivateMsgFont.TextBoxText)));
 }
예제 #2
0
 private void GroupMsgSend_Click(object sender, RoutedEventArgs e)
 {
     DebugerApp.LogWhenThrow(() => DebugerApp.GroupMsgEvent(
                                 int.Parse(GroupMsgSubType.TextBoxText),
                                 int.Parse(GroupMsgMsgId.TextBoxText),
                                 long.Parse(GroupMsgFromGroup.TextBoxText),
                                 long.Parse(GroupMsgFromQq.TextBoxText),
                                 GroupMsgFromAnonymous.TextBoxText,
                                 GroupMsgMsg.TextBoxText,
                                 int.Parse(GroupMsgFont.TextBoxText)));
 }