Ejemplo n.º 1
0
        private void TreeGrid_CurrentCellRequestNavigate(object sender, Syncfusion.UI.Xaml.Grid.CurrentCellRequestNavigateEventArgs args)
        {
            string address = "https://en.wikipedia.org/wiki/" + args.NavigateText;

            Process.Start(new ProcessStartInfo(address));
        }
 async void OnSfDataGridCurrentCellRequestNavigate(object sender, Syncfusion.UI.Xaml.Grid.CurrentCellRequestNavigateEventArgs args)
 {
     string str = "http://en.wikipedia.org/wiki/" + args.NavigateText;
     await Launcher.LaunchUriAsync(new Uri(str));
 }