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