我目前正在编写一个应用程序来启动Windows 10上的屏幕保护程序并显示屏幕而不是黑色背景。因此,Bubbles和亲戚可以像旧操作系统版本一样。
这是我的完整代码:
using Microsoft.Win32;
using System;
using System.Diagnostics;
using System.IO;
using System.Windows.Forms;
public class DrawOverMyScreen {
public static void Main(string[] CommandLine) {
switch (CommandLine[0]) {
case "/c":
DialogResult Answer = MessageBox.Show("What do you want to do?\n\n - Press \"Yes\" to configure the screensaver\n - Press \"No\" to change the screensaver\n - Press \"Cancel\" to do nothing", "DrawOverMyScreen Configuration", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button3);
switch (Answer) {
case DialogResult.Yes:
Screensaver("/c");
break;
case DialogResult.No:
throw new NotImplementedException();
break;
default:
break;
}
break;
default:
Screensaver("/s");
break;
}
}
public static void Screensaver(string CommandLine) {
RegistryKey Settings = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\DrawOverMyScreen");
if (Settings != null) {
string ScreensaverLocation = Settings.GetValue("Screensaver", string.Empty).ToString();
if (!string.IsNullOrEmpty(ScreensaverLocation) && File.Exists(ScreensaverLocation)) {
Process Screensaver = Process.Start(new ProcessStartInfo(ScreensaverLocation, CommandLine));
Screensaver.WaitForExit();
}
}
}
}
注意Screensaver
方法。它使用Process.Start(new ProcessStartInfo(ScreensaverLocation, CommandLine));
启动屏幕保护程序。但每当我Screensaver("/c");
运行屏幕保护程序的配置实用程序时,我只能获得正常的屏幕保护程序视图(在一段时间后空闲时获得的视图)。使用像这样的运行提示:C:\Windows\SysWOW64\SCREEN~1.SCR /c
也会得到相同的结果,但命令行提示实际上会打开配置实用程序。
为什么它不起作用,我怎样才能这样做呢?
答案 0 :(得分:0)
仅仅根据你提供的内容,我无法告诉你它为什么不起作用。我没有屏幕保护程序来测试(我知道)。但是我可以用记事本打开一个文本文件来完成所有这四个:
单独的ProcessStartInfo
ProcessStartInfo procInfo = new ProcessStartInfo("notepad.exe", "c:\\test.txt");
Process proc = Process.Start(procInfo);
proc.WaitForExit();
将ProcessStartInfo与属性分开
ProcessStartInfo procInfo = new ProcessStartInfo();
procInfo.Arguments = "c:\\test.txt";
procInfo.FileName = "notepad.exe";
Process proc = Process.Start(procInfo);
proc.WaitForExit();
内联ProcessStartInfo
Process proc = Process.Start(new ProcessStartInfo("notepad.exe", "c:\\test.txt"));
proc.WaitForExit();
没有PSI,只是处理
Process proc = Process.Start("notepad.exe", "c:\\test.txt");
proc.WaitForExit();
您可能想要使用第一个,以便您可以在“Process proc ...”行中断点并检查procInfo
的属性。 Arguments
属性应显示第二个值(在我的情况下为c:\\test.txt
),FileName
属性应该是您正在执行的内容的路径(我的notepad.exe
)
编辑:我添加了单独的属性,因此您可以真正看到明确的设置。
我使用3D文字屏幕保护程序编写了一个示例:
string scrPath = @"C:\Windows\System32\ssText3d.scr";
ProcessStartInfo procInfo = new ProcessStartInfo();
procInfo.FileName = scrPath;
procInfo.Verb = "config";
procInfo.UseShellExecute = false;
Process proc = Process.Start(procInfo);
proc.WaitForExit();
我没有使用Arguments
。相反,我使用了Verb
。这需要将UseShellExecute
设置为false
。我得到了预期的配置对话框而不是屏幕保护程序运行。
关于动词的更多信息
您还可以定义自定义动词:Register an Application to Handle Arbitrary File Types