CoreWindowDialog Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CoreWindowDialog() |
Creates a default instance of the CoreWindowDialog class. In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see Display WinRT UI objects that depend on CoreWindow. |
CoreWindowDialog(String) |
Creates an instance of the CoreWindowDialog class with the supplied title. In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see Display WinRT UI objects that depend on CoreWindow. |
CoreWindowDialog()
Creates a default instance of the CoreWindowDialog class.
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see Display WinRT UI objects that depend on CoreWindow.
public:
CoreWindowDialog();
CoreWindowDialog();
public CoreWindowDialog();
function CoreWindowDialog()
Public Sub New ()
See also
Applies to
CoreWindowDialog(String)
Creates an instance of the CoreWindowDialog class with the supplied title.
In a desktop app, before using an instance of this class in a way that displays UI, you'll need to associate the object with its owner's window handle. For more info, and code examples, see Display WinRT UI objects that depend on CoreWindow.
public:
CoreWindowDialog(Platform::String ^ title);
CoreWindowDialog(winrt::hstring const& title);
public CoreWindowDialog(string title);
function CoreWindowDialog(title)
Public Sub New (title As String)
Parameters
- title
-
String
Platform::String
winrt::hstring
The title of the dialog.