| 12345678910111213141516171819202122232425262728 |
- <?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">
- <Tab Title="SImple">
- <ShellContent
- Title="Home"
- ContentTemplate="{DataTemplate local:MainPage}"
- Route="MainPage" />
- </Tab>
- <Tab Title="Pro">
- <ShellContent
- Title="Home"
- ContentTemplate="{DataTemplate local:ProTab}"
- Route="MainPage" />
- </Tab>
- <Tab Title="Timelapse">
- <ShellContent
- Title="Home"
- ContentTemplate="{DataTemplate local:TimelapsePage}"
- Route="MainPage" />
- </Tab>
- </Shell>
|