Beispiel #1
0
 /// <summary>
 /// 打开键盘
 /// </summary>
 public void OpenTheTouchKeyBoard()
 {
     try
     {
         TouchKeyBoard.ShowInputPanel();
     }
     catch (Exception ex)
     {
         LogManage.WriteLog(this.GetType(), ex);
     }
     finally
     {
     }
 }
Beispiel #2
0
 /// <summary>
 /// 键盘弹出
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void KeyBoard_UP(object sender, TouchEventArgs e)
 {
     try
     {
         TimerJob.StartRun(new Action(() =>
         {
             //显示触摸键盘
             TouchKeyBoard.ShowInputPanel();
         }), 100);
     }
     catch (Exception ex)
     {
         LogManage.WriteLog(this.GetType(), ex);
     }
 }