Looking for ideas of best Infragistics component to use instead of VS picturebox control.
Thanks.
Hello allenovereem,
Has this issue been addressed?
It sounds like you're looking for the WinPictureBox. You can find documentation on that here.
Elizabeth AlbertLocalization Engineer
From a glance at the documentation, it doesn't look as though the WinPictureBox has scrolling functionality. Is this true?
If no scrolling capability for WinPictureBox, is there some other component I could place the WinPictureBox inside of with AutoSize set to true that would cause the parent component (and thereby the image) to be scrollable?
Allen
Hello Allen,
Could you please clarify what you mean by "scrolling functionality"? Do you mean to scroll through multiple images, like the ASP.NET WebImageViewer? Or do you mean to scroll to see portions of only one image?
If you mean to scroll through multiple images, there is no Windows Forms version of the WebImageViewer, but you could submit a feature request. You could also use a WinTilePanel and put one WinPictureBox (or even the Image directly) inside each tile.
If you mean to scroll to view just one image, then you could add a Panel with a background image, and use WinScrollBar to add the scrolling functionality, as described in this topic.
Let me know if you have any other questions.
Thanks Eizabeth. I meant that I need the functionality to scroll around on any image that is wider and/or longer than the WinPictureBox size boundaries. I will check out the link.