1

,软输入面板SoftInputPanel,或是显示在 Windows Mobile 设备上的屏幕键盘。SIP

如何检测何时有人点击SIP

如何以编程方式启用/禁用SIP

在此处输入图像描述

4

1 回答 1

2

没关系。

找到一篇好文章>> 这里 <<

基本上包括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 回答