Questions tagged [appbar]

An application desktop toolbar (also called an appbar) is a window that is similar to the Windows taskbar.

It is anchored to an edge of the screen, and it typically contains buttons that give the user quick access to other applications and windows.

An app bar consists of a toolbar and potentially other widgets

source: http://msdn.microsoft.com/en-us/library/windows/desktop/cc144177(v=vs.85).aspx

499 questions
8
votes
1 answer

Global App bar on windows 8 application

I'm working on a Windows 8 application project. I'm using Visual Studio 2012 and it's predefined Templates (GroupedPage, SplitPage, ItemsPage). At this time I need to add an App bar. the way I choose is to create one and display it on all of the…
Xstahef
  • 654
  • 1
  • 6
  • 13
8
votes
1 answer

How to close appbar (Windows 8 Metro)

When I tap on icon in bottom appbar it stays open. I need close it when button clicked. How can I achieve this? I'm using C#, XAML.
Mike Keskinov
  • 10,359
  • 5
  • 53
  • 73
7
votes
2 answers

How to make the Flutter app bar with gradient background

This question is being posted here as the related question here on stack overflow has only workarounds but no straight to the point approach.
Yadu
  • 2,045
  • 1
  • 6
  • 21
7
votes
0 answers

Application Desktop Toolbar: Desktop space not reserved by ABM_SETPOS message on Win7/8.1

I'm modifying an existing MFC application to make use of the Win32 Application Desktop Toolbar API, and I've got a solution that seems to be most of the way there (at least for Windows 10). However, there are three behaviors--on three editions of…
bionicOnion
  • 1,234
  • 2
  • 15
  • 24
7
votes
3 answers

Flutter: How to attach a FloatingActionButton to the AppBar?

The Scaffold-Widget only allows to place a FloatingActionButton at the bottom right or the bottom center. How can I place it between AppBar and body like here? [
hendra
  • 1,403
  • 2
  • 12
  • 26
7
votes
3 answers

How to make AppBar component from material-ui-next react to scroll events

As per Material Design guidelines: Upon scrolling, the top app bar can […] transform in the following ways: - Scrolling upward hides the top app bar - Scrolling downward reveals the top app bar When the top app bar scrolls, its elevation…
Putzi San
  • 3,582
  • 1
  • 16
  • 27
7
votes
1 answer

How to show both drawer button and back button in Flutter app?

For faster navigation to root pages in deep navigation, both Back and Drawer icon buttons need to be shown in AppBar. How to do that in a Flutter app?
Kyaw Tun
  • 10,164
  • 7
  • 44
  • 72
7
votes
1 answer

Icons and text in AppBar disappear at random

I have problem with icons and text disappearing at random in my Windows 10 UWP app. picture is on start up. picture is after clicking the appbar button and thereby navigating to another page and then opening the app bar again. This is the XAML…
Mikkel Gunvald
  • 321
  • 1
  • 12
7
votes
3 answers

TypeError : React object is undefined on createElement

I am new to React and Material UI and I am attempting to create an AppBar with Tabs as children. My current implementation looks like this: import {React, PropTypes, Component} from 'react'; import TodoTextInput from './TodoTextInput'; import…
Brig
  • 113
  • 1
  • 3
  • 6
7
votes
2 answers

Padding / space in Toolbar between icon and title (Android 24)

With the new Android 24, I found out that the icon and title on the Toolbar has a wider padding and I can't find any way to resolve this. Example: MainActivity.java: public class MainActivity extends AppCompatActivity { @Override …
kafaii
  • 83
  • 1
  • 4
7
votes
4 answers

How to remove the shadow above the app bar?

I'd like to make the status bar transparent by adding @android:color/transparent to v21/styles.xml on style name="AppTheme.NoActionBar" but I keep getting a shadow above the app bar, is it possible to…
brettbrdls
  • 483
  • 1
  • 6
  • 16
7
votes
1 answer

Metro-style Appbar in fullscreen WPF program

I am currently working on a desktop C# WPF application where the goal is to make it look and feel like a "real" Windows Store App. I want to add an appbar that should be shown when the user swipes up from the bottom. To do this in a normal app you…
6
votes
2 answers

How to implement app bar action text instead of action icon in Flutter?

I am trying to implement appbar in the flutter application. I am able to add an action icon that closes the app. I am willing to show the username beside the close action icon. I tried to add new Text() in the action widget array in the appar…
user3831831
6
votes
2 answers

how to align icon on the left side of the app bar in android

I am trying to push the back icon image on the left side of the app bar in the android but the icon displaying in the middle of app(tool) bar. How to align icon on the right side of the app bar in android? Please have a look at the image…
Mithun Kumar
  • 481
  • 1
  • 6
  • 15
6
votes
1 answer

How to programmatically click an ApplicationBarIconButton?

So that's the question. I have the following variants of code in my test framework (assuming appBarButton is ApplicationBarIconButton): var bindingFlags = BindingFlags.Instance | BindingFlags.NonPublic; var method = typeof(ApplicationBarIconButton) …
Oleksandr Zolotarov
  • 909
  • 1
  • 10
  • 20
1 2
3
33 34