Hi
I want to Show a PDF in My app. Anyhow possible to start the Default PDF Viewer and snap My app to the left side at the same time?
THanks
// Set the option to show the picker
var options = new Windows.System.LauncherOptions();
options.UI.PreferredPlacement = Windows.UI.Popups.Placement.Right;
options.DisplayApplicationPicker = false;
// Launch the retrieved file
bool success = await Windows.System.Launcher.LaunchFileAsync(file, options);