| File: System\Windows\IWindowService.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // Description: Defines the basic window interface for desktop and browser cases // // namespace System.Windows { /// <summary> /// /// </summary> internal interface IWindowService { /// <summary> /// The data that will be displayed as the title of the window. Hosts /// are free to display the title in any manner that they want. For /// example, the browser may display the title set via the Title /// property somewhere besides the caption bar. /// </summary> string Title { get; set; } /// <summary> /// Height of the host window /// </summary> double Height { get; set; } /// <summary> /// Width of the host window /// </summary> double Width { get; set; } bool UserResized { get; } } }