Desktop
WPF
If you have a need for calendaring capabilities in your WPF application, look no further. The RadScheduler brings you a number of capabilities with minimal effort. I am going to discuss some of the core features that you get with the RadScheduler for WPF without implementing any code. I thought a quick preview of what the control offers out of the box, might give you some ideas of how you leverage it in your applications. To get started create a new WPF application and drop a RadScheduler onto the Window. <Window x:Class="WPFRadSchedule.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="600" Width="800 " xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"> <Grid> <telerik:RadScheduler Margin="12" Name="radScheduler1" /> </Grid> </Window> The XAML above is a preview of what I...