【问题标题】:Virtual Keyboard Borderless Win 10虚拟键盘无边框 Win 10
【发布时间】:2016-09-12 13:35:16
【问题描述】:

我正在尝试将 Win 10 Borderless 的虚拟键盘 但不知道为什么它不起作用。

我用记事本试过了,它工作正常。

(我做了一个 Debug.log 来检查 IntPtr 是否不为空,并且在这两种情况下它都返回 true)

这就是我所做的

using UnityEngine;
using System;
using System.Runtime.InteropServices;

public class test : MonoBehaviour 
{
[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string className, string windowName);

[DllImport("USER32.DLL")]
public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

[DllImport("USER32.DLL")]
public static extern int GetWindowLong(IntPtr hWnd, int nIndex);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)]
public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, int uFlags);

const int WS_BORDER = 8388608;
const int WS_DLGFRAME = 4194304;
const int WS_CAPTION = WS_BORDER | WS_DLGFRAME;
const int WS_SYSMENU = 524288;
const int WS_THICKFRAME = 262144;
const int WS_MINIMIZE = 536870912;
const int WS_MAXIMIZEBOX = 65536;
const int GWL_STYLE = -16;
const int GWL_EXSTYLE = -20;
const int WS_EX_DLGMODALFRAME = 0x1;
const int SWP_NOMOVE = 0x2;
const int SWP_NOSIZE = 0x1;
const int SWP_FRAMECHANGED = 0x20;
const uint MF_BYPOSITION = 0x400;
const uint MF_REMOVE = 0x1000;

private void Borderless() {

   // IntPtr hWnd = FindWindow(null,"On-Screen Keyboard"); // <----- Not Working
    IntPtr hWnd = FindWindow(null,"Untitled - NotePad"); // <----- Working

    if (hWnd != IntPtr.Zero) 
    {
        int Style = 0;

        Style = GetWindowLong(hWnd, GWL_STYLE);
        Style = Style & ~WS_CAPTION;
        Style = Style & ~WS_SYSMENU;
        Style = Style & ~WS_THICKFRAME;
        Style = Style & ~WS_MINIMIZE;
        Style = Style & ~WS_MAXIMIZEBOX;

        SetWindowLong(hWnd, GWL_STYLE, Style);
        Style = GetWindowLong(hWnd, GWL_EXSTYLE);
        SetWindowLong(hWnd, GWL_EXSTYLE, Style | WS_EX_DLGMODALFRAME);
        SetWindowPos(hWnd, new IntPtr(0), 50, 0, 150, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
    }
     else 
    {
        Debug.LogWarning("Borderless() failed, hWnd is 0!");
    }
}

void Start()
{
    Borderless();
}

}

谢谢大家 ;)

【问题讨论】:

    标签: c# unity3d keyboard virtual borderless


    【解决方案1】:

    好的,我得到另一个解决方案,也许是一个更好的解决方案。

    On-Screen Keyboard on Unity

    我知道这不是一个真正的答案,所以如果有人知道上面的代码为什么不起作用,我会很高兴学习 ;)

    【讨论】:

      猜你喜欢
      • 2015-11-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-01-03
      • 2015-01-02
      • 2013-04-02
      相关资源
      最近更新 更多