private void DataGrid_GridTapped(object sender, GridTappedEventsArgs e)
 {
     if (e.RowColumnIndex.RowIndex == 1 && e.RowColumnIndex.ColumnIndex == 0)
     {
         UIApplication.SharedApplication.OpenUrl(new Foundation.NSUrl("https://help.syncfusion.com/"));
     }
 }
Exemplo n.º 2
0
 private void Lista_OnGridTapped(object sender, GridTappedEventsArgs e)
 {
     if (e.RowColumnindex.ColumnIndex == 0)
     {
         Session.Navigation.Navigation.PushAsync(new NovaTarefa((Tarefas)e.RowData));
     }
 }
Exemplo n.º 3
0
        private void Lista_OnGridTapped(object sender, GridTappedEventsArgs e)
        {
            ListaVM lvm = new ListaVM();

            lvm = (ListaVM)e.RowData;
            TarefasAnot ta = new TarefasAnot();

            ta.Anot_CodProgr = tarefa.CodPro;
            ta.Anot_DataAnot = tarefa.DATA_PROGR;
            ta.Anot_histor   = lvm.Anot_histor;
            ta.ID_Anot       = lvm.Id_Anot;
            Session.Navigation.Navigation.PushAsync(new Anotacao(tarefa, ta));
        }
 private void dataGrid_GridTapped(object sender, GridTappedEventsArgs e)
 {
     if (Device.OS != TargetPlatform.WinPhone && Device.OS != TargetPlatform.Windows)
     {
         formView.Visibility = false;
     }
     else
     {
         formView.IsVisible = false;
     }
     dataGrid.Opacity   = 1.0;
     dataGrid.IsEnabled = true;
 }
 private void DataGrid_GridTapped(object sender, GridTappedEventsArgs e)
 {
     // Hides the context menu when SfDataGrid is tapped anywhere outside the context menu view
     relativeLayout.Children.Remove(contextMenu);
     isContextMenuDisplayed = false;
 }