ScrollListBox Event Args
Inheritance: System.EventArgs
Exemplo n.º 1
0
 private void OnIncidentSelected(object sender, ScrollEventArgs args)
 {
     IncidentListItem listItem = args.Item as IncidentListItem;
     if (listItem != null)
     {
         OnForward<DetailsViewController>(false, listItem.Item);
     }
 }
Exemplo n.º 2
0
 private void OnIncidentChanged(object sender, ScrollEventArgs args)
 {
     menuItemAction.Enabled = (args.Item != null);
 }