New to Telerik UI for WinForms? Download free 30-day trial

Integration

This example will demonstrate how RadGanttView integrates with RadScheduler, allowing you to show the appointments from RadScheduler in RadGanttView. Editing any data in one control is immediately reflected in the other. The integration can be achieved with any control/component out there. The only condition is that the control/component implements the IGanttViewDataProvider interface. Then you assign an instance of the type that implements the interface to the DataProvider property of RadGanttView and you are good to go.

Integration with RadScheduler

In the case of RadScheduler we have implemented a component (called GanttViewIntegrationProvider) which implements the interface and allows for two way notifications between the controls. Here is how to use it:

this.radGanttView1.DataProvider = new GanttViewIntegrationProvider(this.radScheduler1);

Me.radGanttView1.DataProvider = New GanttViewIntegrationProvider(Me.radScheduler1)

Two things you need to note. The first is that RadGanttView requires a unique id for each item in it. You can read more on how to provide such an "id" in the section on "Adding new items". The other thing you need to be aware is the ids RadScheduler assigns to its appointments. They are of type EventId and need a Guid when constructed. Summing these two together gives the following code:

private void radGanttView1_ItemChildIdNeeded(object sender, GanttViewItemChildIdNeededEventArgs e)
{
    e.ChildId = new EventId(Guid.NewGuid());
}

Private Sub radGanttView1_ItemChildIdNeeded(sender As Object, e As Telerik.WinControls.UI.GanttViewItemChildIdNeededEventArgs) Handles radGanttView1.ItemChildIdNeeded
    e.ChildId = New EventId(Guid.NewGuid())
End Sub

WinForms RadGanttView Integration

See Also

In this article