Here is my problem. After I select iten I have 4 options to click, then each options give me 4 additional final options.
So now I have command bar:
And now after I click one of buttons I want to show another command bar above the first one:
Is it possible with winRT for Windows Phone 8.1? Or maybe show some Fly Menu with icons?
like so:
here is code for adding FlyOut menu but ... when i click sendBtn everything gets grey but nothing is shown ;/
MenuFlyout testMenu = new MenuFlyout();
MenuFlyoutItem item1 = new MenuFlyoutItem();
item1.Text = "Test1";
MenuFlyoutItem item2 = new MenuFlyoutItem();
item1.Text = "Test2";
testMenu.Items.Add(item1);
testMenu.Items.Add(item2);
AppBarButton sendBtn = new AppBarButton();
sendBtn.Label = textLoader.GetString("SendToService");
sendBtn.Icon = new SymbolIcon(Symbol.Mail);
sendBtn.Flyout = testMenu;
command_bar.PrimaryCommands.Add(sendBtn);