| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <Shell
- x:Class="Minolta_Remote.AppShell"
- xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:local="clr-namespace:Minolta_Remote"
- Shell.FlyoutBehavior="Disabled"
- Title="Minolta Remote"
- Shell.NavBarIsVisible="True"
- Shell.TabBarBackgroundColor="#121212"
- Shell.TabBarForegroundColor="#FFFFFF"
- Shell.TabBarTitleColor="#FFFFFF"
- Shell.TabBarDisabledColor="#666666">
- <Shell.Resources>
- <!-- Shared camera logic instance -->
- <local:CameraLogic x:Key="CameraLogic" />
- <!-- Tab text styling -->
- <Style TargetType="TabBar">
- <Setter Property="Shell.TabBarTitleColor" Value="#FFFFFF" />
- <Setter Property="Shell.TabBarForegroundColor" Value="#FFFFFF" />
- <Setter Property="Shell.TabBarBackgroundColor" Value="#121212" />
- </Style>
- <!-- Slightly larger, bold tab titles -->
- <Style TargetType="Tab">
- <Setter Property="Shell.TabBarForegroundColor" Value="#FFFFFF" />
- <Setter Property="Shell.TabBarTitleColor" Value="#FFFFFF" />
- <Setter Property="Shell.TitleView">
- <Setter.Value>
- <Grid Padding="0,6">
- <Label
- Text="{Binding Title, Source={RelativeSource AncestorType={x:Type Tab}}}"
- FontAttributes="Bold"
- FontSize="14"
- TextColor="#FFFFFF"
- HorizontalTextAlignment="Center"
- VerticalTextAlignment="Center" />
- </Grid>
- </Setter.Value>
- </Setter>
- </Style>
- </Shell.Resources>
- <Tab Title="Auto Mode">
- <ShellContent
- Title="Auto Mode"
- ContentTemplate="{DataTemplate local:MainPage}"
- Route="AutoMode" />
- </Tab>
- <Tab Title="Bulb Mode">
- <ShellContent
- Title="Bulb Mode"
- ContentTemplate="{DataTemplate local:ProTab}"
- Route="BulbMode" />
- </Tab>
- <Tab Title="TimeLapse Mode">
- <ShellContent
- Title="TimeLapse Mode"
- ContentTemplate="{DataTemplate local:TimelapsePage}"
- Route="TimeLapseMode" />
- </Tab>
- </Shell>
|