Exemplo n.º 1
0
 protected virtual void OnItemClick(ScheduleItemArgs e)
 {
     if (ItemClick != null)
     {
         ItemClick(this, e);
     }
 }
Exemplo n.º 2
0
 private void scheduleDayView_ItemDoubleClick(object sender, ScheduleItemArgs e)
 {
     using (ScheduleItemEditForm scheduleItemEditForm = new ScheduleItemEditForm(e.Item as ScheduleItem)) {
         if (scheduleItemEditForm.ShowDialog() == DialogResult.OK) {
             // Force a redraw of the item.
             _RefreshView();
         }
     }
 }
Exemplo n.º 3
0
 private void scheduleDayView_ItemDoubleClick(object sender, ScheduleItemArgs e)
 {
     using (ScheduleItemEditForm scheduleItemEditForm = new ScheduleItemEditForm(e.Item as ScheduleItem)) {
         if (scheduleItemEditForm.ShowDialog() == DialogResult.OK)
         {
             // Force a redraw of the item.
             _RefreshView();
         }
     }
 }
Exemplo n.º 4
0
 protected virtual void OnItemDoubleClick(ScheduleItemArgs e)
 {
     if(ItemDoubleClick != null) {
         ItemDoubleClick(this, e);
     }
 }