AppShell.xaml 781 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <Shell
  3. x:Class="Minolta_Remote.AppShell"
  4. xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:local="clr-namespace:Minolta_Remote"
  7. Shell.FlyoutBehavior="Disabled"
  8. Title="Minolta_Remote">
  9. <Tab Title="SImple">
  10. <ShellContent
  11. Title="Home"
  12. ContentTemplate="{DataTemplate local:MainPage}"
  13. Route="MainPage" />
  14. </Tab>
  15. <Tab Title="Pro">
  16. <ShellContent
  17. Title="Home"
  18. ContentTemplate="{DataTemplate local:ProTab}"
  19. Route="MainPage" />
  20. </Tab>
  21. <Tab Title="Timelapse">
  22. <ShellContent
  23. Title="Home"
  24. ContentTemplate="{DataTemplate local:TimelapsePage}"
  25. Route="MainPage" />
  26. </Tab>
  27. </Shell>