In the documentation over at (http://www.telerik.com/help/wpf/carousel-getting-started.html) we find the following snippet at the bottom when discussing how to add images to the carousel. I'm sure this looks fine to you but where/what is "Image"?
The only image I can find is System.Drawing.Image and that ain't it. All that displays is a text block detailing the image's properties. At least is displays something.
I have found vague references to this being a "UI Element" whatever that is. I've been all over these forums, stackoverflow and the web in general, what am I missing here?
List<Image> myImages = new List<Image>();Image myImage = new Image();myImage.Source = new BitmapImage(new Uri("/Images/nature1.jpg", UriKind.Relative));myImage.Height = 200;myImage.Width = 200;myImages.Add(myImage);The only image I can find is System.Drawing.Image and that ain't it. All that displays is a text block detailing the image's properties. At least is displays something.
I have found vague references to this being a "UI Element" whatever that is. I've been all over these forums, stackoverflow and the web in general, what am I missing here?