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

  • 相关阅读:
    G. Yash And Trees 线段树 + dfs序 + bitset
    网络流最小割 H
    P2764 最小路径覆盖问题 网络流重温
    P4016 负载平衡问题 网络流重温
    D. Yet Another Subarray Problem 思维 难 dp更好理解
    J
    20190709 暑训 区间种类数 莫队的学习
    E
    线段树 离散化 E. Infinite Inversions E. Physical Education Lessons
    CbsPersist
  • 原文地址:https://www.cnblogs.com/ysharp/p/2076500.html
Copyright © 2011-2022 走看看