1. 程式人生 > >基於Unity3D開啟Windows軟鍵盤的實現

基於Unity3D開啟Windows軟鍵盤的實現

今天開發介面是觸控式螢幕要用到軟鍵盤輸入,軟鍵盤的路徑是C:\Windows\System32\osk.exe

方法一:

  1. void Start () {  
  2.         Application.OpenURL (@"C:\Windows\System32\osk.exe");  
  3.     }  
方法二:

引用 System.Diagnostics

  1.  void Start () {  
  2.         Process.Start (@"C:\Windows\System32\osk.exe");  
  3.     }