CoreWindowFlyout 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
CoreWindowFlyout(Point) |
Creates an instance of the CoreWindowFlyout class at the supplied position. 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. |
CoreWindowFlyout(Point, String) |
Creates an instance of the CoreWindowFlyout class at the specified position 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. |
CoreWindowFlyout(Point)
Creates an instance of the CoreWindowFlyout class at the supplied position.
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:
CoreWindowFlyout(Point position);
CoreWindowFlyout(Point const& position);
public CoreWindowFlyout(Point position);
function CoreWindowFlyout(position)
Public Sub New (position As Point)
Parameters
- position
- Point
The pixel position on the screen where the flyout is to originate. The position provides the upper-leftmost corner of the flyout.
See also
Applies to
CoreWindowFlyout(Point, String)
Creates an instance of the CoreWindowFlyout class at the specified position 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:
CoreWindowFlyout(Point position, Platform::String ^ title);
CoreWindowFlyout(Point const& position, winrt::hstring const& title);
public CoreWindowFlyout(Point position, string title);
function CoreWindowFlyout(position, title)
Public Sub New (position As Point, title As String)
Parameters
- position
- Point
The pixel position on the screen where the flyout is to originate. The position provides the upper-leftmost corner of the flyout.
- title
-
String
Platform::String
winrt::hstring
The title of the flyout.