2 instantiations of HtmlWindowShim
System.Windows.Forms (2)
winforms\Managed\System\WinForms\HtmlShimManager.cs (2)
60shim = new HtmlWindow.HtmlWindowShim(window); 64shim = new HtmlWindow.HtmlWindowShim(window);
9 references to HtmlWindowShim
System.Windows.Forms (9)
winforms\Managed\System\WinForms\HtmlShimManager.cs (7)
25private Dictionary<HtmlWindow, HtmlWindow.HtmlWindowShim> htmlWindowShims; 57HtmlWindow.HtmlWindowShim shim = null; 59htmlWindowShims = new Dictionary<HtmlWindow,HtmlWindow.HtmlWindowShim>(); 114internal HtmlWindow.HtmlWindowShim GetWindowShim(HtmlWindow window) { 128if (!(addedShim is HtmlWindow.HtmlWindowShim)) { 178HtmlWindow.HtmlWindowShim shim = htmlWindowShims[unloadedWindow]; 205foreach (HtmlWindow.HtmlWindowShim shim in htmlWindowShims.Values) {
winforms\Managed\System\WinForms\HtmlWindow.cs (2)
61private HtmlWindowShim WindowShim 67HtmlWindowShim shim = ShimManager.GetWindowShim(this);