Interface IWindowGroup
Interface for a group of in-game windows.
Namespace: SociallyDistant.Core.Shell.Windowing
Assembly: SociallyDistant.Framework.dll
Syntax
public interface IWindowGroup
Properties
AllowMinimizing
Gets a value indicating whether this window group allows windows to be minimized.
Declaration
bool AllowMinimizing { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Windows
Gets a list of all opened windows.
Declaration
IReadOnlyList<IWindow> Windows { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<IWindow> |
Methods
CreateWindow()
Creates a new window and returns the resulting IWindow instance.
Declaration
IWindow CreateWindow()
Returns
| Type | Description |
|---|---|
| IWindow |