I need to diplay an image in silverlight image tag while combobox selceted item.
-
Hi, There is no properties in smart tag while selecting a item from combobox combox1_SelectionChanged for dipaying an image.Plz help me for this solution. With Regards, Ch.Gayatri Subudhi
-
Hi, There is no properties in smart tag while selecting a item from combobox combox1_SelectionChanged for dipaying an image.Plz help me for this solution. With Regards, Ch.Gayatri Subudhi
Your requirement is not clear. Can you give more details
Arun Jacob http://codepronet.blogspot.com/
-
Your requirement is not clear. Can you give more details
Arun Jacob http://codepronet.blogspot.com/
I need display an image while selcting an item from combobox....like combobox1_selecttionchanged { image1.visibilty==true;///this one giving error } wht i hv to do to display an image With Regards Ch.Gayatri
-
I need display an image while selcting an item from combobox....like combobox1_selecttionchanged { image1.visibilty==true;///this one giving error } wht i hv to do to display an image With Regards Ch.Gayatri
If you are trying to change visibility of image control then,
image1.Visibility = Visibility.Visible;
But you can directly bind the image source from the XAML itself. You may need an IValueConvcerter for converting selected item to image source.Arun Jacob http://codepronet.blogspot.com/