WpfAppBar icon indicating copy to clipboard operation
WpfAppBar copied to clipboard

Overlapping full-screen applications

Open ghost opened this issue 8 years ago • 4 comments

When i use Windows RDP application or play video on youtube in full-screen mode, bar overlapp their.

ghost avatar Jun 29 '16 08:06 ghost

It would be nice to have a way of hiding it when an app goes full screen or even auto hiding it so the user can still mouse over the side of the screen to show it.

JamesCoyle avatar May 10 '17 20:05 JamesCoyle

auto hiding it so the user can still mouse over the side of the screen to show it.

Would say it would be more intuitive to act like the native appbar would. Auto hide if app broadcasts full screen, come back, if app broadcasts leaving full screnn. Wouldn't it?

Clijsters avatar May 11 '17 11:05 Clijsters

I meant have it as an option. By default it should be hidden in full screen but for some use cases it might be useful to allow it to be shown while in full screen applications (probably with a hotkey rather than hovering).

JamesCoyle avatar May 11 '17 13:05 JamesCoyle

I have just tested and it turns out the solution can't be more simpler...

Change

AppBarFunctions.SetAppBar(this, ABEdge.Left, grid);

into

AppBarFunctions.SetAppBar(this, ABEdge.Left, grid, false);

Have you figured out the reason? Still no?

OK, basically, the 4th argument sets the window's "TopMost" property, which is set to "true" by default.

swinzy avatar Oct 09 '21 13:10 swinzy