This is a migrated thread and some comments may be shown as answers.

RightToLeft RadAlarmForm

2 Answers 55 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Farshid
Top achievements
Rank 1
Farshid asked on 09 Apr 2012, 06:32 PM
Hi
How To RightToLeft RadAlarmForm when Shown Appointment Alarm?

2 Answers, 1 is accepted

Sort by
0
Ivan Todorov
Telerik team
answered on 12 Apr 2012, 08:13 AM
Hi Farshid,

You can use the AlarmFormShowing event to modify the alarm dialog before it is shown. The following code snippet demonstrates how you can enable RightToLeft in it:
schedulerReminder.AlarmFormShowing += new EventHandler<RadAlarmFormShowingEventArgs>(schedulerReminder_AlarmFormShowing);
 
 void schedulerReminder_AlarmFormShowing(object sender, RadAlarmFormShowingEventArgs e)
 {
     (e.AlarmForm as RadForm).RightToLeft = System.Windows.Forms.RightToLeft.Yes;
 }

I hope you find this useful.

A bit off-topic, please note that if you would like to continue receiving support from us, you should first answer our questions in the thread titled "RightToLeft EditRecurrenceDialog" that you can find in your Telerik account.

If you have any further questions, feel free to ask.

All the best,
Ivan Todorov
the Telerik team
RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>
0
Farshid
Top achievements
Rank 1
answered on 14 Apr 2012, 01:20 PM
I resolve the RightToLeft EditRecurrenceDialog
.Thanks for your answer.
Tags
Scheduler and Reminder
Asked by
Farshid
Top achievements
Rank 1
Answers by
Ivan Todorov
Telerik team
Farshid
Top achievements
Rank 1
Share this question
or