In This Article

UserPromptWindowOptions Class

Defines options for how UserPromptWindow is displayed.

public class UserPromptWindowOptions
Inheritance:
object object

Constructors

UserPromptWindowOptions()

Initializes an instance of the class.

public UserPromptWindowOptions()

Properties

CanResize

Indicates if the window can be resized.

public bool? CanResize { get; set; }

Property Value

bool?

InitializeAction

An optional action which will be called to initialize the UserPromptWindow before it is displayed.

public Action<UserPromptWindow>? InitializeAction { get; set; }

Property Value

Action<UserPromptWindow>

Owner

The window which is the owner of the dialog. When null, a default owner will be assigned.

public Window? Owner { get; set; }

Property Value

Window

Title

The title of the window. When null, a default title may be assigned.

public string? Title { get; set; }

Property Value

string

Inherited Members