- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
过去 3 天我一直在尝试在网上和自己寻找解决方案。找到了很多相关 Material ,但没有任何 Material 适合我的情况。我通过以下代码启动了一个新进程,它是 Windows 语音识别应用程序,我想以编程方式调用其右键菜单中的选项之一。
我已经测试过了Postmessage、Sendmessage 和 sendClick 事件,它们都不起作用。
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
[DllImport("User32.dll")]
public static extern int SetForegroundWindow(IntPtr point);
[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern IntPtr FindWindow(string lpClass, string lpW);
[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hWnd, uint msg, IntPtr wParam, IntPtr lParam);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("user32.dll", SetLastError = true)]
public static extern void PostMessage(IntPtr hWnd, int msg, int wParam, int lParam);
public Form1()
{
//InitializeComponent();
const int WM_COMMAND = 0x0111;
Process proc = new Process();
proc.StartInfo.FileName = @"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessibility\Speech Recognition.lnk";
proc.Start();
Thread.Sleep(200);
IntPtr Window = FindWindow(null, "Speech Recognition");
SetForegroundWindow(Window);
SendKeys.SendWait("{Move 200,200}");
}
}
}
最佳答案
假设你想打开语音词典
你可以通过
SpeechUXWiz.exe VocabularyManager
使用 API:Add new word to windows speech recognition using C#
You'll need to use the SAPI Automation APIs (aka SpeechLib) to access the ISpLexicon interfaces.
In particular,
ISpLexicon::AddPronunciation
will add a new word (and its associated pronunciation) to the user lexicon.
关于c# - 在windows c#中的进程中调用右键单击菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36012011/
我有点困惑。在 : http://delphi.about.com/od/objectpascalide/l/blvkc.htm 它说“Space”的正确键是#20。试过了,但行不通。但是,将其替换为
我有一个 input 的 type="submit" 并且我希望当我点击(右键或左键点击)它时这个元素周围没有蓝色边框。 我在下面的chrome浏览器中添加了OK模式和not OK模式的图片: OK模
我想在右键单击选项卡标题时显示上下文菜单条。 但是,我没有找到检测选项卡标题点击的方法。 有人知道如何做到这一点吗? 最佳答案 Private Sub tab1_MouseClick(sender A
我对编程还很陌生,正在尝试制作扫雷 GUI。游戏完美地右键单击 JToggleButton,在按钮上显示了一个代表炸弹的“B”,但是当我在鼠标监听器中用 setIcon() 替换 setText()
我正在尝试将一个按钮 float 到卡片的右侧。我希望它出现在右下角。 当我正确使用 float 时。它出现在父 div 之外,有没有办法正确定位它?
我正在使用 Struts2 标签和下面的代码使用 JS 计算并检查/验证在文本字段中输入的值。 它还会更新在 textfield 中输入的总数列表,这些由 onblur 处理和 onkeydown事件
我是一名优秀的程序员,十分优秀!