Search Results for

    Interface IDisplayManager

    Allows enumeration the displays attached to the system.

    Namespace: WinMan
    Assembly: WinMan.dll
    Syntax
    public interface IDisplayManager

    Properties

    | Improve this Doc View Source

    Displays

    A snapshot list of all the attached displays;

    Declaration
    IReadOnlyList<IDisplay> Displays { get; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyList<IDisplay>
    | Improve this Doc View Source

    PrimaryDisplay

    The current primary display.

    Declaration
    IDisplay PrimaryDisplay { get; }
    Property Value
    Type Description
    IDisplay
    | Improve this Doc View Source

    VirtualDisplayBounds

    The bounds of the virtual display;

    Declaration
    Rectangle VirtualDisplayBounds { get; }
    Property Value
    Type Description
    Rectangle
    | Improve this Doc View Source

    Workspace

    Declaration
    IWorkspace Workspace { get; }
    Property Value
    Type Description
    IWorkspace

    Events

    | Improve this Doc View Source

    Added

    A new display had been added.

    Declaration
    event EventHandler<DisplayChangedEventArgs> Added
    Event Type
    Type Description
    System.EventHandler<DisplayChangedEventArgs>
    | Improve this Doc View Source

    PrimaryDisplayChanged

    The primary display has been changed.

    Declaration
    event EventHandler<PrimaryDisplayChangedEventArgs> PrimaryDisplayChanged
    Event Type
    Type Description
    System.EventHandler<PrimaryDisplayChangedEventArgs>
    | Improve this Doc View Source

    Removed

    A display has been removed.

    Declaration
    event EventHandler<DisplayChangedEventArgs> Removed
    Event Type
    Type Description
    System.EventHandler<DisplayChangedEventArgs>
    | Improve this Doc View Source

    VirtualDisplayBoundsChanged

    The bounds of the virtual display have changed.

    Declaration
    event EventHandler<DisplayRectangleChangedEventArgs> VirtualDisplayBoundsChanged
    Event Type
    Type Description
    System.EventHandler<DisplayRectangleChangedEventArgs>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX