Questions tagged [flyout]
241 questions
4
votes
1 answer
Is there an alternative to Windows 8.1 SettingsFlyout in Windows 10 UWP development?
I'm currently developing a Windows 10 UWP application. Before I upgraded to Windows 10 I used the SettingsFlyout class in Windows 8.1. Now I red on stackoverflow that this class isn't supported by Windows 10.
So is there a good alternative for the…

mario.trappl
- 41
- 2
4
votes
2 answers
WinRT call Flyout.ShowAt() async
I am building my own Flyout control with list selection to use it on Windows Phone as well as Windows Desktop. Unlike ListPickerFlyout class, the Flyout class does not have an async method to show the flyout.
How can I call the ShowAt method async…

zirkelc
- 1,451
- 1
- 23
- 49
4
votes
1 answer
MenuFlyoutItem Get Parent
I have a Flyout attached to a ListView Item, simplified as follows:
…

blawford
- 435
- 5
- 18
4
votes
2 answers
Disable NotifyIconOverflowWindow autohide
I have done flyout window similar to win7 battery meter. It is behaving just like built in one except when it is shown via notify icon who is located on NotifyAreaOverflowWindow aka notify overfow area that window autohides itself after some time…

user629926
- 1,910
- 2
- 18
- 43
4
votes
1 answer
Notification area flyout link area
I made a flyout window in the notification area using WinAPI and my goal was to make it similar to the flyout windows that show up when you click some of the icons in the notification area, like the Volume icon.
I already succeeded in making it look…

AFA
- 45
- 4
3
votes
1 answer
Xamarin Form Shell: Flyout v/s TabBar
I'm confused by reading the sentence
TabBar disables the Flyout
in the Xamarin documentation. But even the sample code shows TabBar in Flyout layout. I guess, I misunderstood the Flyout and TabBar (my idea is as per attached). Anyone kindly…

Rauf
- 12,326
- 20
- 77
- 126
3
votes
2 answers
How to set a background image in the xamarin shell header with a flyout?
I'm developing a Xamarin.Forms 4 project and I'm using the app shell.
I was using the Tabbar and thanks to custom renderer I obtained to add a background image to the "header"
in

Elelio
- 287
- 5
- 18
3
votes
1 answer
UWP add MenuFlyout(Item) dynamically to an existing menuflyout
A Grid in my DataTemplate currently has this Flyout.
…

Seaky Lone
- 992
- 1
- 10
- 29
3
votes
1 answer
MenuFlyout - code an Item
I just created a small flyout:
MenuFlyout flyout = new MenuFlyout();
flyout.Items.Add(new X_UWP_App.Models.MyMenuFlyoutItem() { Text = "Copy" });
flyout.ShowAt(rect);
I can mark a text. After the marking of the text this flyout appears with "Copy"…

axbeit
- 853
- 11
- 35
3
votes
1 answer
Change MenuFlyoutPresenter to align with button in UWP
I am trying to get the MenuFlyout to align bottom-left of the button. I can achieve this if i put the button at the left of the screen, but if the button is anywhere else the MenuFlyout is always centered right under the button. I suspect that I…

Gema Beltran
- 171
- 9
3
votes
1 answer
Flyout alternative Windows Phone 8.0
I'm doing a WP 8.0 compatible app, into that I need to put on a specific page a flyout menu.
Now, the Flyout element is only compatible with WP 8.1, so now I'm asking if there's an alternative compatible with WP8.
Specifically, I want a button…

grizzo
- 141
- 1
- 3
- 10
3
votes
0 answers
FlyOut on DataTemplate error WP 8.1
I have a DataTemplate for the ListBox Items. I would like that when the user holds a listbox item, a open Attached Flyout appears upon the item with some options. So when I hold an item of the listbox, in debug mode, I enter the method but it…

Hubert Solecki
- 2,611
- 5
- 31
- 63
3
votes
3 answers
Windows Phone Flyout stays always on top
The Flyout control of the Windows Phone SDK (WP 8.1) doesn't work as I expected.
No matter how I change the Placement Property, the only thing that changes something is PlacementMode.Full.
Top, Bottom, Left & Right still keep the Flyout on top of…

Cort3vl
- 163
- 1
- 11
3
votes
2 answers
Windows 8.1: Behaviors on Flyouts don't Work
I am developing a windows 8.1 app using VS 2013 and MVVM Light.
The following code shows the behavior in a flyout within an appbar:

basedgod
- 2,517
- 1
- 17
- 18
3
votes
2 answers
menus that expand when you mouse over, done purely via CSS?
Someone told me once they it is possible to create menu's via CSS only, how can you?

mrblah
- 99,669
- 140
- 310
- 420