protocol

  1. A

    Handling opening a WPF application via protocol from another WPF application multiple times.

    I open WPF application “A” via protocol from another WPF application “B”, I can handle this event in application “B”, using for example as in this code if (activatedEventArgs != null) { app.OnProtocolActivated(activatedEventArgs); } but it is triggered only on the first call of the opening...
Back
Top Bottom