如何停止应用程序从“开始”菜单窃取焦点?

时间:2018-11-05 04:37:20

标签: c# .net winforms

正在开发一个C#程序,当单击一个按钮时它将为用户截屏,我遇到的问题是,如果“开始”菜单已打开,则单击WinForms应用程序上的按钮会关闭“开始”菜单,然后再截屏,即我正在使用的捕获屏幕的方法:

Bitmap bmp = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
Graphics gr = Graphics.FromImage(bmp);
gr.CopyFromScreen(0, 0, 0, 0, bmp.Size);

这绑定到单击按钮:

onClick(object sender, EventArgs e) {

我的想法是我需要以某种方式使按钮可单击而不引起关注?

0 个答案:

没有答案