Created
November 5, 2017 09:28
-
-
Save pnp0a03/258d9a3553a6c9d8737027b09a879785 to your computer and use it in GitHub Desktop.
FCU commandline sample - Main.xaml.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void OnNavigatedTo(NavigationEventArgs e) | |
{ | |
ProcessPassedCommandlineArguments(e.Parameter); | |
} | |
public void ProcessPassedCommandlineArguments(object arguments) | |
{ | |
tbArguments.Text = arguments as string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment