|
|
@@ -3,19 +3,16 @@
|
|
|
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"
|
|
|
+ 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.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" />
|
|
|
@@ -45,23 +42,23 @@
|
|
|
|
|
|
<Tab Title="Auto Mode">
|
|
|
<ShellContent
|
|
|
- Title="Auto Mode"
|
|
|
- ContentTemplate="{DataTemplate local:MainPage}"
|
|
|
- Route="AutoMode" />
|
|
|
- </Tab>
|
|
|
+ Title="Auto Mode"
|
|
|
+ Route="AutoMode"
|
|
|
+ ContentTemplate="{DataTemplate local:MainPage}"/>
|
|
|
+ </Tab>
|
|
|
|
|
|
<Tab Title="Bulb Mode">
|
|
|
<ShellContent
|
|
|
Title="Bulb Mode"
|
|
|
- ContentTemplate="{DataTemplate local:ProTab}"
|
|
|
- Route="BulbMode" />
|
|
|
+ Route="BulbMode"
|
|
|
+ ContentTemplate="{DataTemplate local:ProTab}"/>
|
|
|
</Tab>
|
|
|
|
|
|
<Tab Title="TimeLapse Mode">
|
|
|
<ShellContent
|
|
|
Title="TimeLapse Mode"
|
|
|
- ContentTemplate="{DataTemplate local:TimelapsePage}"
|
|
|
- Route="TimeLapseMode" />
|
|
|
+ Route="TimeLapseMode"
|
|
|
+ ContentTemplate="{DataTemplate local:TimelapsePage}"/>
|
|
|
</Tab>
|
|
|
|
|
|
</Shell>
|