Как обнаружить / контролировать SoftInputPanel? - PullRequest
1 голос
/ 01 ноября 2011

Мягкая панель ввода SoftInputPanel, или SIP - это на экранной клавиатуре , которая отображается на устройствах Windows Mobile.

Как определитькогда кто-то нажимает SIP?

Как программно включить / отключить SIP?

enter image description here

1 Ответ

2 голосов
/ 01 ноября 2011

Не бери в голову.

Нашли хорошую статью >> ЗДЕСЬ << </a>.

В основном включают 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");
      }
    }

  }

}
...