WPF:生成自定义MessageBox而不是Windows MessageBox

时间:2016-08-16 09:35:12

标签: c# wpf

我想从我的代码运行一个应用程序,该应用程序只能以管理权限运行。我可以使用以下代码成功运行应用程序。

start = new ProcessStartInfo();
start.Arguments = drive;
start.Verb = "runas";
start.FileName = filepath;
start.WindowStyle = ProcessWindowStyle.Normal;
start.CreateNoWindow = false;
using (exeProcess = Process.Start(start))
{
    exeProcess.WaitForExit();
}

出现以下MessageBox;

Screenshot of MessageBox

我想要做的是我想要压制上面提到的Windows Messagebox,并展示我自己设计的Messagebox。请指导我怎样才能做到。

1 个答案:

答案 0 :(得分:1)

基本上你想要做的是Disabling UAC programmatically根据链接是不可能的。