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