提问人:Kaloschke 提问时间:2/6/2017 最后编辑:ChillieKaloschke 更新时间:2/6/2017 访问量:115
适用于 UWP keybd_event 的 C# Windows 运行时组件
C# windows runtime component for UWP keybd_event
问:
我想从 UWP 内部控制 Windows 系统控件。因为这是不可能的,所以我创建了一个服务应用程序作为 Windows 运行时组件。然后我用谷歌搜索了一下,发现了这个:
using System;
using System.Windows.Forms; // of course I have no forms
using System.Runtime.InteropServices;
namespace UniversalSandbox
{
public partial class Form1 : Form
{
public const int KEYEVENTF_EXTENTEDKEY = 1;
public const int KEYEVENTF_KEYUP = 0;
public const int VK_MEDIA_NEXT_TRACK = 0xB0;
public const int VK_MEDIA_PLAY_PAUSE = 0xB3;
public const int VK_MEDIA_PREV_TRACK = 0xB1;
[DllImport("user32.dll")]
public static extern void keybd_event(byte virtualKey, byte scanCode,uint flags, IntPtr extraInfo);
但是 t 有一个错误:keybd_even
方法...是外部的,没有属性
有解决办法吗?
答: 暂无答案
评论
keybd_event
SendInput