or
CustomAppointmentDialog
appointmentDialog = null;
private void radSchedulerDemo_AppointmentEditDialogShowing(object sender, AppointmentEditDialogShowingEventArgs e)
{
if (this.appointmentDialog == null)
{
this.appointmentDialog = new CustomAppointmentDialog();
}
e.AppointmentEditDialog =
this.appointmentDialog;
}
public class CustomAppointmentDialog : EditAppointmentDialog
{
public CustomAppointmentDialog()
:
base()
{
this.Controls["lblSubject"].Text = "Patient";
}
}
Dim dtPicker As New RadDateTimePicker
dtPicker.ThemeName = "Office2007Blue"
AddHandler dtPicker.ValueChanged, AddressOf pickerValueChanged
Dim hostItem As New Telerik.WinControls.RadHostItem(dtPicker)
hostItem.MinSize = New System.Drawing.Size(150, 50)
Me.chunkJumpTo.Items.Add(hostItem)
Me.chunkJumpTo.Items(0).Name = "ggPicker"
Private Sub pickerValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim dtp As RadDateTimePicker = sender
selectedDate = dtp.Value
Select Case Me.Calendar1.CurrentView
Case WinForms.CalendarView.WeekRange
viewMonth()
Me.Calendar1.Selection.Set(selectedDate)
Case WinForms.CalendarView.Timetable
If Calendar1.TimetableSettings.VisibleColumns > 1 Then
viewWeek()
Me.Calendar1.Selection.Set(selectedDate)
Else
viewDay()
End If
End Select
setCurrentMonth()
End Sub
{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 MS Sans Serif;}} \viewkind4\uc1\pard\f0\fs17
The "...TEXT" version has only raw text as you might find if you edited simply in notepad.