Hi Shailendra_G, Elementhost control is used to host WPF control into Winform application. Like you said, it doesn't have AutoScroll property. I got 2 idea which you can try. 1. Add a Panel to the form, set its AutoScroll property to true. Then add ElementHost control into the panel, set its AutoSize property to true. Panel control will show scroll bar when inside control grow larger than panel's size. 2. Enable scroll in WPF instead of in Winform. You can use ScrollViewer control(WPF control) to let the control scrollable. If you have any problem with my suggestion, please feel free to tell me. Sincerely, Kira Qian Please mark the replies as answers if they help and unmark if they don't.- Marked As Answer byShailendra_G Thursday, August 27, 2009 2:32 PM
-
|