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

NavigationNextImage and NavigationPrevImage Properties

2 Answers 41 Views
Calendar, DateTimePicker, TimePicker and Clock
This is a migrated thread and some comments may be shown as answers.
Mike
Top achievements
Rank 1
Mike asked on 30 Jan 2010, 04:20 PM
I dragged a new WinForms RadCalendar control onto a WinForms 2008 form.

Selecting the control and viewing its properties in the Visual Studio Properties pane, I set the control's NavigationNextImage and NavigationPrevImage properties to .bmp resources.

The images I assigned show in the designer.

When I run the application the images do not show.  All that shows is the < and > text.

Is setting the images all I need to do to have the images show in runtime or have I missed something?

Thank you,

Mike McIntyre

2 Answers, 1 is accepted

Sort by
0
Martin Vasilev
Telerik team
answered on 03 Feb 2010, 03:49 PM
Hi Mike,

Thank you for writing.

I have managed to reproduce the described issue. We will address it in some of the feature releases. Currently, you can work-around this by setting the image at run-time through code:

private void Form1_Load(object sender, EventArgs e)
{
    this.radCalendar1.NavigationNextImage = MyProject.Properties.Resources.myNextImage;
}

I have updated your telerik points for bringing our attention to this. Do not hesitate to contact me again if you have other questions.

Kind regards,
Martin Vasilev
the Telerik team

Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Follow the status of features or bugs in PITS and vote for them to affect their priority.
0
Mike
Top achievements
Rank 1
answered on 03 Feb 2010, 04:49 PM
Thanks for the work around.
Tags
Calendar, DateTimePicker, TimePicker and Clock
Asked by
Mike
Top achievements
Rank 1
Answers by
Martin Vasilev
Telerik team
Mike
Top achievements
Rank 1
Share this question
or