1

ソフト入力パネルSoftInputPanel、またはは、Windows Mobile デバイスに表示されるオンスクリーン キーボードです。SIP

誰かが をクリックしたことを検出するにはどうすればよいSIPですか?

プログラムで有効/無効にするにはどうすればよいSIPですか?

ここに画像の説明を入力

4

1 に答える 1

2

どうでも。

良い記事を見つけました>> HERE << .

基本的には、次のものが含まれusing Microsoft.WindowsCE.Forms;ますP/Invoke

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.WindowsCE.Forms;
using System.Runtime.InteropServices;

namespace Test1 {

  public class Form1 : Form {

    [DllImport("coredll.dll")]
    public static extern bool SipShowIM(int dwFlag);

    InputPanel sip;

    public Form1() {
      InitializeComponent();
      sip = new InputPanel();
      sip.EnabledChanged += new EventHandler(SIP_EnabledChanged);
    }

    void SIP_EnabledChanged(object sender, EventArgs e) {
      if (sip.Enabled) {
        Console.WriteLine("Enabled");
      } else {
        Console.WriteLine("Disabled");
      }
    }

  }

}
于 2011-11-01T18:12:54.540 に答える