WPF APP 启动时增加特殊逻辑

Posted 陈-林-赵-魏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF APP 启动时增加特殊逻辑相关的知识,希望对你有一定的参考价值。

  public partial class App : Application
    {
        public App()
        {
            this.Startup += (o1, e1)=>{
                string commandLine = Environment.CommandLine;  
                string appFilePath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
                commandLine = commandLine.Replace(String.Format("\\"{0}\\" ", appFilePath), ""); 得到命令参数

                MessageBox.Show(string.Format("commandLine:{0}", Environment.CommandLine));
                MessageBox.Show("SpiltResult:" + commandLine);
                if (!string.IsNullOrEmpty(commandLine) && commandLine.ToUpper() == "SA")//启动参数带SA则转到特殊处理页面
                {
                    this.ShutdownMode = ShutdownMode.OnLastWindowClose;  
                    this.StartupUri = new Uri("pack://application:,,,/Views/SNPrint/SA_MODE.xaml");  //
                    MessageBox.Show("Set URI!");
                }
//正常App.xaml中存在StartupUri如【StartupUri="MasterWindow.xaml"】则可以省略下面代码 //else //{ // this.StartupUri = new Uri("pack://application:,,,/MasterWindow.xaml"); // MessageBox.Show("MAIN URI!"); //} }; } }

//new Uri("pack://application:,,,/Views/SNPrint/SA_MODE.xaml"); 代表如下

 

以上是关于WPF APP 启动时增加特殊逻辑的主要内容,如果未能解决你的问题,请参考以下文章

WPF App.OnStartup() 在写入文件和 FileWatcher 时崩溃

从控制台应用程序启动 WPF 窗口

WPF App.xaml.cs常用模板,包括:异常捕获,App只能启动一次

WPF如何获取命令行参数

WPF -- 点击空白处隐藏View

[WPF]启动参数