Ejemplo n.º 1
0
 public static void scheduler_AppointmentFlyoutShowing(object sender, AppointmentFlyoutShowingEventArgs e)
 {
     System.Windows.Forms.Label myControl = new System.Windows.Forms.Label();
     myControl.BackColor = Color.LightGreen;
     myControl.Size      = new Size(200, 100);
     myControl.Text      = e.FlyoutData.Subject;
     myControl.Font      = new Font("Arial", 20);
     e.Control           = myControl;
 }
Ejemplo n.º 2
0
 void OnSchedulerControl1AppointmentFlyoutShowing(object sender, AppointmentFlyoutShowingEventArgs e)
 {
     e.Control = new MyFlyout(e.FlyoutData.Subject, e.FlyoutData.Start, e.FlyoutData.End);
 }
Ejemplo n.º 3
0
 private void schedulerControl1_AppointmentFlyoutShowing(object sender, AppointmentFlyoutShowingEventArgs e)
 {
 }