zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    js node 节点 原生遍历 createNodeIterator
    nodejs fs copy本地文件src dst
    axios 请求常用组件,及其错误
    【IntelliJ IDEA学习之三】IntelliJ IDEA常用快捷键
    【IntelliJ IDEA学习之二】IntelliJ IDEA常用配置
    【IntelliJ IDEA学习之一】IntelliJ IDEA安装激活、VM参数
    【python学习案例】python判断自身是否正在运行
    【Linux脚本学习案例】shell脚本多通道并发执行存储过程
    【Activiti学习之四】Activiti API(三)
    【Activiti学习之三】Activiti API(二)
  • 原文地址:https://www.cnblogs.com/ysharp/p/2076500.html
Copyright © 2011-2022 走看看