8 instantiations of HtmlWindow
System.Windows.Forms (8)
winforms\Managed\System\WinForms\HtmlDocument.cs (1)
177return iHTMLWindow2 != null ? new HtmlWindow(ShimManager, iHTMLWindow2) : null;
winforms\Managed\System\WinForms\HtmlShimManager.cs (1)
133AddWindowShim(new HtmlWindow(this, addedShim.AssociatedWindow));
winforms\Managed\System\WinForms\HtmlWindow.cs (4)
167return (iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null; 180return (iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null; 364return (iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null; 389return (iHTMLWindow2 != null) ? new HtmlWindow(ShimManager, iHTMLWindow2) : null;
winforms\Managed\System\WinForms\HtmlWindowCollection.cs (2)
56return (htmlWindow2 != null) ? new HtmlWindow(shimManager, htmlWindow2) : null; 75return (htmlWindow2 != null) ? new HtmlWindow(shimManager, htmlWindow2) : null;
44 references to HtmlWindow
System.Windows.Forms (44)
winforms\Managed\System\WinForms\HtmlDocument.cs (2)
172public HtmlWindow Window 900HtmlWindow window = htmlDocument.Window;
winforms\Managed\System\WinForms\HtmlElement.cs (1)
1430HtmlWindow window = doc.Window;
winforms\Managed\System\WinForms\HtmlElementErrorEventArgs.cs (1)
45/// Gets or sets a value indicating whether the <see cref='System.Windows.Forms.HtmlWindow.Error'/>
winforms\Managed\System\WinForms\HtmlShimManager.cs (14)
25private Dictionary<HtmlWindow, HtmlWindow.HtmlWindowShim> htmlWindowShims; 56public void AddWindowShim(HtmlWindow window) { 57HtmlWindow.HtmlWindowShim shim = null; 59htmlWindowShims = new Dictionary<HtmlWindow,HtmlWindow.HtmlWindowShim>(); 60shim = new HtmlWindow.HtmlWindowShim(window); 64shim = new HtmlWindow.HtmlWindowShim(window); 114internal HtmlWindow.HtmlWindowShim GetWindowShim(HtmlWindow window) { 128if (!(addedShim is HtmlWindow.HtmlWindowShim)) { 141internal void OnWindowUnloaded(HtmlWindow unloadedWindow) { 178HtmlWindow.HtmlWindowShim shim = htmlWindowShims[unloadedWindow]; 205foreach (HtmlWindow.HtmlWindowShim shim in htmlWindowShims.Values) {
winforms\Managed\System\WinForms\HtmlWindow.cs (22)
162public HtmlWindow Opener 175public HtmlWindow Parent 361public HtmlWindow Open(string urlString, string target, string windowOptions, bool replaceEntry) 372public HtmlWindow Open(Uri url, string target, string windowOptions, bool replaceEntry) 386public HtmlWindow OpenNew(string urlString, string windowOptions) 397public HtmlWindow OpenNew(Uri url, string windowOptions) 581private HtmlWindow parent; 583public HTMLWindowEvents2(HtmlWindow htmlWindow) 599FireEvent(HtmlWindow.EventGotFocus, e); 605FireEvent(HtmlWindow.EventLostFocus, e); 611FireEvent(HtmlWindow.EventError, e); 618FireEvent(HtmlWindow.EventLoad, e); 624FireEvent(HtmlWindow.EventUnload, e); 634FireEvent(HtmlWindow.EventScroll, e); 640FireEvent(HtmlWindow.EventResize, e); 674private HtmlWindow htmlWindow; 676public HtmlWindowShim(HtmlWindow window) 770public static bool operator ==(HtmlWindow left, HtmlWindow right) 807public static bool operator !=(HtmlWindow left, HtmlWindow right) 821return (this == (HtmlWindow)obj);
winforms\Managed\System\WinForms\HtmlWindowCollection.cs (4)
47public HtmlWindow this[int index] { 64public HtmlWindow this[string windowId] { 117HtmlWindow[] htmlWindows = new HtmlWindow[this.Count];