- 231 名前:デフォルトの名無しさん [2024/06/23(日) 14:57:30.86 ID:nCpb5rpZ.net]
- >>228
WindowsFormsあたり使えばできるんじゃないの?と思ってCopilotに聞いてみた Add-Type -TypeDefinition @" using System; using System.Runtime.InteropServices; public class ImeControl { [DllImport("user32.dll")] public static extern IntPtr GetForegroundWindow(); [DllImport("user32.dll")] public static extern int ImmAssociateContext(IntPtr hWnd, IntPtr hIMC); public static void DisableImeMode() { IntPtr hWnd = GetForegroundWindow(); ImmAssociateContext(hWnd, IntPtr.Zero); } } "@ 思ってたんと違った
|

|