We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

can we change the AppointmentForm ?

we are looking for schedule third party outsourcing for winform and interested in syncfusion schedule.

we take a short time for your sample

and have some questions as following.

we feel this object "too smart" and not flexible.

because this object offer us many default interface like

AppointmentForm , AlertForm , Recurrences Form

and ContentMenu for schedule item ( right click menu on schedule grid ).

but, we hope to apply our own loayout and other functions on these form.

can we handle these events and change these interface as our form ?

would kindly give us some clue,document or sample about this question.



Albert



1 Reply

AD Administrator Syncfusion Team June 25, 2008 04:42 PM UTC

Currently to get at the Appointments for to display your own form requires that you derive some classes. There is a sample of this at the bottom of this forum thread.
http://www.syncfusion.com/support/forums/message.aspx?MessageID=72869

In the upcoming Vol3 release (mid July), replacing the form will be a matter of catching an event.

As far as the context menu, you can handle SetupContextMenu event, and set your own menu there.


void scheduleControl1_SetupContextMenu(object sender, CancelEventArgs e)
{
ContextMenuStrip menu = new ContextMenuStrip();
menu.Items.Add("Hello");
scheduleControl1.ContextMenuStrip = menu;
e.Cancel = true;
}



Loader.
Live Chat Icon For mobile
Up arrow icon