14 references to Window
System.Windows.Forms (2)
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.HtmlDocumentShim.cs (1)
34
HtmlWindow? window = htmlDocument.
Window
;
System\Windows\Forms\Controls\WebBrowser\HtmlElement.HtmlElementShim.cs (1)
58
HtmlWindow? window = doc.
Window
;
System.Windows.Forms.Tests (12)
System\Windows\Forms\HtmlDocumentTests.cs (2)
1393
HtmlWindow window = document.
Window
;
1394
Assert.NotSame(window, document.
Window
);
System\Windows\Forms\HtmlWindowTests.cs (10)
25
HtmlWindow window = document.
Window
;
26
window.Should().NotBeSameAs(document.
Window
);
41
HtmlWindow window = document.
Window
;
42
window.Should().NotBeSameAs(document.
Window
);
57
HtmlWindow window = document.
Window
;
87
HtmlWindow window = document.
Window
;
88
window.Should().Be(document.
Window
);
89
window.Should().Be(document.GetElementById("1").Parent.Document.
Window
);
90
window.Should().Be(window.Frames[0].Parent.Document.
Window
);
91
window.Should().Be(window.Frames[1].Parent.Document.
Window
);