我想在后台运行此代码(不显示任何控制台),因此我将输出类型更改为 Windows应用程序,但是该程序无法正常工作。
当我将输出更改回 Console Application (控制台应用程序)时,一切正常,但是它并未在后台运行...如果您知道任何更好的解决方案,或者您知道一个已经编写的软件,做同样的事情,请在这里评论:)
该代码基本上是在按下键时将文本从资源复制到剪贴板。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Resources;
using System.Reflection;
namespace EzClipBoard
{
class Program
{
[STAThreadAttribute]
static void Main(string[] args)
{
int exit = 1;
string bubblesort = codes.ResourceManager.GetString("bubblesort");
string insertion = codes.ResourceManager.GetString("insertion");
while(exit != 0)
{
if (Console.ReadKey(true).Key == ConsoleKey.X)
{
Clipboard.SetText(bubblesort);
}
else if (Console.ReadKey(true).Key == ConsoleKey.Y)
{
Clipboard.SetText(insertion);
}
else if (Console.ReadKey(true).Key == ConsoleKey.Escape)
{
exit = 0;
}
}
}
}
}
答案 0 :(得分:1)
所以我解决问题的方法不一定是在后台运行该过程。是解决方案的另一种方法。
class Program
{
[DllImport("user32.dll")]
public static extern int GetAsyncKeyState(Int32 i);
static void Main(string[] args)
{
while (true)
{
Thread.Sleep(100);
for (int i = 0; i < 255; i++)
{
int keyState = GetAsyncKeyState(i);
if (keyState == 1 || keyState == -32767)
{
Console.WriteLine(i);
if (i == 88 ) // X Key
{
Console.WriteLine(i);
//Write what's gonning to happen when 'Y' pressed
break;
}
else if (i == 89) // Y Key
{
Console.WriteLine(i);
//Write what's gonning to happen when 'Y' pressed
break;
}
else if (i == 27) // Escape Key
{
Console.WriteLine(i);
//Write what's gonning to happen when 'Y' pressed
break;
}
}
}
}
}
}
这是“密钥”列表的链接: https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.keys?redirectedfrom=MSDN&view=netframework-4.7.2 因此,以这种方式考虑解决方案:我们的操作系统始终在检查是否按了键,为什么不使用它呢?此“ user32.dll”是我们的操作系统用户界面。因此,我们只是连接到这个现有的UI。