|
|
|
@ -19,7 +19,7 @@
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<ControlTemplate x:Key="flyout">
|
|
|
|
|
<VerticalStackLayout BackgroundColor="black" Spacing="20" Margin="0,20,0,0">
|
|
|
|
|
<VerticalStackLayout BackgroundColor="black" Spacing="20" Padding="0,20,0,0">
|
|
|
|
|
|
|
|
|
|
<Button Text="Home" Style="{StaticResource buttons}"/>
|
|
|
|
|
<Button Text="Playlists" Style="{StaticResource buttons}"/>
|
|
|
|
@ -121,36 +121,38 @@
|
|
|
|
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
|
|
|
|
<VisualStateGroupList>
|
|
|
|
|
<VisualStateGroup>
|
|
|
|
|
|
|
|
|
|
<VisualState x:Name="Narrow">
|
|
|
|
|
|
|
|
|
|
<VisualState x:Name="Wide">
|
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
|
|
|
|
<AdaptiveTrigger MinWindowWidth="1200" />
|
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
|
<VisualState.Setters>
|
|
|
|
|
<Setter Property="ColumnDefinitions">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ColumnDefinitionCollection>
|
|
|
|
|
<ColumnDefinition Width="0" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="6*" />
|
|
|
|
|
</ColumnDefinitionCollection>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
<Setter Property="BackgroundColor" Value="blue"/>
|
|
|
|
|
</VisualState.Setters>
|
|
|
|
|
</VisualState>
|
|
|
|
|
|
|
|
|
|
<VisualState x:Name="Wide">
|
|
|
|
|
|
|
|
|
|
<VisualState x:Name="Narrow">
|
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
|
<AdaptiveTrigger MinWindowWidth="1200" />
|
|
|
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
|
<VisualState.Setters>
|
|
|
|
|
<Setter Property="ColumnDefinitions">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ColumnDefinitionCollection>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="6*" />
|
|
|
|
|
<ColumnDefinition Width="0"/>
|
|
|
|
|
<ColumnDefinition Width="6*"/>
|
|
|
|
|
</ColumnDefinitionCollection>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
<Setter Property="BackgroundColor" Value="red"/>
|
|
|
|
|
</VisualState.Setters>
|
|
|
|
|
</VisualState>
|
|
|
|
|
|
|
|
|
|