1

我正在尝试将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();
}

}

多谢你们 ;)

4

1 回答 1

0

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

Unity 上的屏幕键盘

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

于 2016-09-12T14:04:39.107 回答