8

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

1 Answers1

9

Set IsOpen=false. That should be enough.

Filip Skakun
  • 31,347
  • 6
  • 71
  • 99
  • 1
    Thank you. For some reason I expected that IsOpen is readonly. I usually use prefix "is" for readonly state properties. I excepted something like method .Show() or property .Visible. – Mike Keskinov May 23 '12 at 21:52