Normal
Hi @Valk, did you push your changes already, so I can take a look at it? I don't fully understand the problem yet. Are you talking about Titanium skin? If you look at Titanium\screens\master_menu.xaml you'll find:[CODE=XML] <Grid.Triggers> <!-- Setting default state of menu to hidden --> <EventTrigger RoutedEvent="Screen.Show"> <TriggerCommand Command="{Command Source={StaticResource MenuModel}, Path=CloseMenu}"/> </EventTrigger> <!-- Slide-In animation when the MenuModel.ShowMenu gets true --> <DataTrigger Binding="{Binding Source={StaticResource MenuModel},Path=IsMenuOpen}" Value="True">[/code]On "Screen.Show" event the "CloseMenu" is invoked, it will hide the menu. Hiding itself is done in DataTrigger. Morpheus
Hi @Valk,
did you push your changes already, so I can take a look at it? I don't fully understand the problem yet.
Are you talking about Titanium skin? If you look at Titanium\screens\master_menu.xaml you'll find:
[CODE=XML] <Grid.Triggers>
<!-- Setting default state of menu to hidden -->
<EventTrigger RoutedEvent="Screen.Show">
<TriggerCommand Command="{Command Source={StaticResource MenuModel}, Path=CloseMenu}"/>
</EventTrigger>
<!-- Slide-In animation when the MenuModel.ShowMenu gets true -->
<DataTrigger Binding="{Binding Source={StaticResource MenuModel},Path=IsMenuOpen}" Value="True">
[/code]
On "Screen.Show" event the "CloseMenu" is invoked, it will hide the menu. Hiding itself is done in DataTrigger.
Morpheus