In a uwp app, is it possible to show a Windows.UI.Xaml.Controls.Primitives.FlyoutBase object in relation to a particular point, as opposed to a FrameworkElement object?
In other words, instead of
flyout.ShowAt(some frameworkElement);
I want something like
flyout.ShowAt(some frameworkElement, x, y).
I realize I could create a dummy FrameworkElement and do it that way, then remove the dummy when the flyout is removed. But that seems a little heavyweight.