void AssociatedObject_CurrentCellRequestNavigate(object sender, CurrentCellRequestNavigateEventArgs args)
        {
            string str = "http://en.wikipedia.org/wiki/" + args.NavigateText;

            Process.Start(new ProcessStartInfo(str));
        }
 /// <summary>
 /// Occurs when navigate the hyper link to URL
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="args"></param>
 async void DataGrid_CurrentCellRequestNavigate(object sender, CurrentCellRequestNavigateEventArgs args)
 {
     string str = "http://en.wikipedia.org/wiki/" + args.NavigateText;
     await Launcher.LaunchUriAsync(new Uri(str));
 }