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