本文介绍了如何检测/控制 SoftInputPanel?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SoftInputPanelSoft Input PanelSIP 是显示在 Windows Mobile 上的屏幕键盘设备.

我如何检测某人何时点击了 SIP?

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

解决方案

没关系.

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

基本上包括using Microsoft.WindowsCE.Forms;和一个P/Invoke:

使用系统;使用 System.Collections.Generic;使用 System.ComponentModel;使用 System.Data;使用 System.Drawing;使用 System.Text;使用 System.Windows.Forms;使用 Microsoft.WindowsCE.Forms;使用 System.Runtime.InteropServices;命名空间 Test1 {公共类Form1:表单{[DllImport("coredll.dll")]public static extern bool SipShowIM(int dwFlag);输入面板 sip;公共表单1(){初始化组件();sip = 新输入面板();sip.EnabledChanged += new EventHandler(SIP_EnabledChanged);}void SIP_EnabledChanged(对象发送者,EventArgs e){如果(sip.启用){Console.WriteLine("启用");} 别的 {Console.WriteLine("禁用");}}}}

The SoftInputPanel, Soft Input Panel, or SIP is the on screen keyboard that displays on Windows Mobile devices.

How do I detect when someone clicks the SIP?

How do I programmatically enable/disable the SIP?

解决方案

Never mind.

Found a good article >> HERE <<.

Basically include using Microsoft.WindowsCE.Forms; and a 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");
      }
    }

  }

}

这篇关于如何检测/控制 SoftInputPanel?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 19:10