所以在我开始之前,我想让你知道我已经知道如何制作计时器。我唯一的问题是它只在我使用某些程序时才有效。我知道编程,我希望计时器从10,000计数(你知道,要做一万小时的规则,是的,我已经完成了几百个,但我想跟踪我的进度)。每当我打开我的视觉工作室时,我都希望计时器在我的桌面上运行,但我不知道如何实现这一点,到目前为止我在谷歌上没有运气,所以任何建议都会有所帮助!
提前致谢!
答案 0 :(得分:1)
在您的计数器应用中,您可以设置一个"进程观察器"检查这个:
using System.Diagnostics;
Process[] procList = Process.GetProcesses();
foreach(Process p in procList ){
if(p.ProcessName == "<visual studio process name>")
{ /*start the timer*/}
}
每分钟,说。如果它找到visual studio,那么让它启动你的计时器。
答案 1 :(得分:1)
您可以按照以下答案中的说明跟踪流程是否已打开:How to Get Active Process Name in C#?
答案 2 :(得分:1)
这是你想要的吗?
System.Diagnostics.Process[] proc = System.Diagnostics.Process.GetProcessesByName("ProcessName");//Add visuals procname here
if (proc.Length > 0)
{
MessageBox.Show("Process running");
if (timer1.Enabled == false)
{
timer1.Start();//Starts the countdown}
System.Threading.Thread.Sleep(1000);
}
else
{
MessageBox.Show("Process not running");
if (timer1.Enabled == true)
{
timer1.Stop();//Stops the countdown}
System.Threading.Thread.Sleep(1000);
}