Hi All,
I implement simple project in Metro App. The scenario is in[Black App] have a button to open [Green App] and [Red App].
I have 2 question :
1. I using Protocol & Windows.System.Launcher.LaunchUriAsync(_Uri) it work well. So Have another way to open App form another app in Metro. Could you tell me detail about another way ?
2. How i can open [Green App] & [Red App] when [Black App] is launch. I try to implment function in the question [1] but not success
Here My code:
public static async void Open()
{
var _Uri = new Uri("GreenApp: " + DateTime.Now.ToString());
await Windows.System.Launcher.LaunchUriAsync(_Uri,
new Windows.System.LauncherOptions
{
DesiredRemainingView = ViewSizePreference.UseNone
});
}
Thanks for supporting me.