• ClickOnce FIleAssociation Commandline


    Traditionally, handling command-line args in an app has been a simple case of reading arguments from the “int main()” function (or equivalent). In WPF this changes somewhat.

    The usual setup is that you have your App.xaml.cs, which loads your initial window. While it’s the former that  has access to the arguments, it’s the latter that is likely to use them. So the steps are:

    1. In App.xaml.cs, catch the event that gives you the args.
    2. Store them somewhere.
    3. Access them from your main window.

    Here’s one way to do it (demonstrating a single argument). Firstly, in App.xaml.cs:

       1: protected override void OnStartup(StartupEventArgs e)
       2: {
       3:     if (e.Args != null && e.Args.Count() > 0)
       4:     {
       5:         this.Properties["ArbitraryArgName"] = e.Args[0];
       6:     }
       7:  
       8:     base.OnStartup(e);
       9: }

    Then in the main window, you can access Application.Current.Properties to get at your args. However, if this happens to be the name of a file you want to load, you should probably wait until after your window has finished loading so that you can react to that file load (eg; give an error, display data, etc):

       1: public MainContainer()
       2: {
       3:     InitializeComponent();
       4:  
       5:     // Make sure we handle command line args:
       6:     this.Loaded += new RoutedEventHandler(MainContainer_Loaded);
       7: }
       8:  
       9: void MainContainer_Loaded(object sender, RoutedEventArgs e)
      10: {
      11:     if (Application.Current.Properties["ArbitraryArgName"] != null)
      12:     {
      13:         string fname = Application.Current.Properties["ArbitraryArgName"].ToString();
      14:         // Act on the file...
      15:     }
      16: }

    Launching via a double-click on a custom file type.

    I created an application that supports a custom document format and I wanted a double-click on that document to open my application. I assumed that the application would open normally with the document presented as a command-line arg, but that’s not the case. Instead, it’s stored in the following tongue-twister:

    AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData[0]

    So, if you revisit the OnStartup method in App.xaml.cs, you can query this location and store it in the same way you did the command-line arg:

       1: protected override void OnStartup(StartupEventArgs e)
       2: {
       3:     // Check if this was launched by double-clicking a doc. If so, use that as the
       4:     // startup file name.
       5:     if (AppDomain.CurrentDomain.SetupInformation
       6:         .ActivationArguments.ActivationData != null
       7:     &&  AppDomain.CurrentDomain.SetupInformation
       8:         .ActivationArguments.ActivationData.Length > 0)
       9:     {
      10:         string fname = "No filename given";
      11:         try
      12:         {
      13:             fname = AppDomain.CurrentDomain.SetupInformation
      14:                     .ActivationArguments.ActivationData[0];
      15:             
      16:             // It comes in as a URI; this helps to convert it to a path.
      17:             Uri uri = new Uri(fname);
      18:             fname = uri.LocalPath;
      19:  
      20:             this.Properties["ArbitraryArgName"] = fname;
      21:  
      22:         }
      23:         catch (Exception ex)
      24:         {
      25:             // For some reason, this couldn't be read as a URI.
      26:             // Do what you must...
      27:         }
      28:     }
      29:  
      30:     base.OnStartup(e);
      31: }

    Notice the little trick with using the “Uri” class; this is because the string you’ll see will look like this:

    file:///c:/temp/my%20test%20doc.blah

  • 相关阅读:
    移动端UI
    jQuery 下拉框三级联动
    jQuery基础与学习资源
    jQuery
    TCP、UDP、HTTP、SOCKET之间的区别
    Socket 通信原理(Android客户端和服务器以TCP&&UDP方式互通)
    android 中 任务、进程和线程的区别
    android中不同手机分辨率适配问题
    经验分享:CSS浮动(float,clear)通俗讲解(真的很通俗)
    关于各种排列组合java算法
  • 原文地址:https://www.cnblogs.com/ysharp/p/2076500.html
Copyright © 2020-2023  润新知