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)
1391
HtmlWindow window = document.
Window
;
1392
Assert.NotSame(window, document.
Window
);
System\Windows\Forms\HtmlWindowTests.cs (10)
23
HtmlWindow window = document.
Window
;
24
window.Should().NotBeSameAs(document.
Window
);
39
HtmlWindow window = document.
Window
;
40
window.Should().NotBeSameAs(document.
Window
);
55
HtmlWindow window = document.
Window
;
85
HtmlWindow window = document.
Window
;
86
window.Should().Be(document.
Window
);
87
window.Should().Be(document.GetElementById("1").Parent.Document.
Window
);
88
window.Should().Be(window.Frames[0].Parent.Document.
Window
);
89
window.Should().Be(window.Frames[1].Parent.Document.
Window
);