Folks,
Is it possible to display text under image in XamCarouselPanel ?
Thanks in advance..
Hello,
I am just checking if you require any further assistance on the matter.
Sincerely,
Krasimir
Developer Support Engineer
Infragistics
www.infragistics.com/support
Hello Jag,
You can read about navigation in WPF here: http://msdn.microsoft.com/en-us/library/ms750478.aspx#The_NavigationWindow_Class . Also if you want to open new WPF window when you click on some of the items in the XamCarouselPanel you can handle the MouseDown event of the Image and add the following code in its event handler:
Window1 newWindow = new Window1(); newWindow.Show(); //If you want to open window and //return only when the newly opened window is closed. //You can use this method newWindow.ShowDialog();
If you need any further assistance please do not hesitate to ask.
krasimir,
Thank you for your quick response. how can i add a link to my window.xaml from image? will be great help. thank you.
Regards
Jag
I have created a sample application for you that demonstrates how the functionality that you are looking for can be achieved. I also added a XamCarouselListBox control showing the same functionality, but instead of adding the items directly in XAML, I bound the XamCarouselListBox to a collection of objects and created DataTemplate for items of the data source.