This question is locked. New answers and comments are not allowed.
I am trying out the RadScheduleView. I have a simple usercontrol:
And am setting the AppointmentsSource in the code behind:
The ScheduleView displays, but I can't see the appointment.
<Grid x:Name="LayoutRoot" Background="White"> <t:RadScheduleView x:Name="s" Grid.Row="0"> <t:RadScheduleView.ViewDefinitions> <t:MonthViewDefinition/> <t:WeekViewDefinition/> <t:DayViewDefinition/> <t:TimelineViewDefinition/> </t:RadScheduleView.ViewDefinitions> </t:RadScheduleView></Grid>And am setting the AppointmentsSource in the code behind:
public partial class Test : UserControl { public Test() { InitializeComponent(); s.AppointmentsSource = new[] { new Appointment { Start = DateTime.Now, End = DateTime.Now.AddHours(2), Body = "TESTING", Location = "Blah", Url = "http://www.google.co.uk/" } }; }}The ScheduleView displays, but I can't see the appointment.