Hello fusers.
I observe a strange behavior for the sidebar. The task is to make sure that it would close when I swipe right-to-left on right panel, but it only works the second time. Can someone suggest a better version? Current implementation:
<EdgeNavigator ux:Name="EdgeNavigator">
<Panel Width="80" ux:Name="menu" EdgeNavigation.Edge="Left" Background="#000">
<ActivatingAnimation>
<Change rootTranslation.X="80"/>
</ActivatingAnimation>
</Panel>
<DockPanel ux:Name="root" Color="Red">
<Translation ux:Name="rootTranslation"/>
<StatusBarBackground Dock="Top"/>
<SwipeGesture ux:Name="swipe" Direction="Left" Type="Simple"/>
<SwipingAnimation Source="swipe">
<GoBack/>
</SwipingAnimation>
</DockPanel>
</EdgeNavigator>