I've encountered an issue in viewing a ActiveX control in a HTMLPlaceholder.
It seem to make the browser (IE8 in this case) very unstable when hiding and showing this control and when disposing the control.
In my case I'm using an ActiveX control to view TIFF- and PDF-files and the Silverlight application is built with MVVM. When I'm unloading a module and removing the view from the region manager the browser crashes. If I keep switching tabs in the RadTabControl that is containing HTMLPlaceHolder I get the same crash.
Worst of all is that this application has to handle this HTMLPlaceHolers Visibility alot since I have BusyIndicators and ChildWindows that needs to be shown and therefore I need to turn the Visibility of the HTMLPlacerHolder on and off alot.
My HTMLPlaceHolder is configured like below, is there any tips or tricks you can give me that might solve these issues?
<telerik:RadHtmlPlaceholder x:Name="DocView" KeepContentInMemory="True" SourceUrl="{Binding Url}" UrlLoaded="DocumentViewer_UrlLoaded" RespectSilverlightLayoutMeasure="True" Visibility="{Binding Visible}" Grid.Row="1" />