注册表参数Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\OCEEQPLUS]
@="OCEEQPLUS Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\OCEEQPLUS\DefaultIcon]
@="G:\\test\\OCEEQPLUS.EXE,1"
[HKEY_CLASSES_ROOT\OCEEQPLUS\shell]
@=""
[HKEY_CLASSES_ROOT\OCEEQPLUS\shell\open]
@=""
[HKEY_CLASSES_ROOT\OCEEQPLUS\shell\open\command]
@="\"G:\\test\\OCEEQPLUS.EXE\" \"%1\""
html页面调用
alt="点击这里">
WPF 程序处理static class Program
{
///
//应用程序的主入口点。
//
[STAThread]
static void Main(string[] args)//
{
CustomApplication app = new CustomApplication();
app.Run();
}
}
class CustomApplication : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
if (e.Args.Length > 0)
{
MainWindow window = new MainWindow(e.Args);
window.Show();
}
else
{
MessageBox.Show("未传入参数!");
Application.Current.Shutdown();
}
}
}