MahApps / MahApps.Metro

A framework that allows developers to cobble together a better UI for their own WPF applications with minimal effort.
https://mahapps.com
MIT License
9.3k stars 2.45k forks source link

Can not get flyout's to open/close by either input binding or a button #2703

Closed alex-nicholas closed 7 years ago

alex-nicholas commented 7 years ago

Im trying to open / close a flyout in in my View and can not get it to work.

<mah:Flyout x:Name="quickLinks"
                    Header="Quick-Links"
                    FontFamily="GlacialIndiference"
                    Width="400"
                    Grid.RowSpan="3"
                    IsOpen="{Binding IsQuickLinksOpen}"
                    Position="Right">
            </mah:Flyout>

I am expecting that when I change IsQuickLinksOpen from false to true, the flyout should appear and vice versa however I can not get the flyout to appear despite debugging shows me the property is changing.. If I set the property to true then open the window I am seeing the flyout open, but I can not open it again after I close it.

punker76 commented 7 years ago

@alex-nicholas Can you create a short app for this scenario?