Skip to content
Permalink
a0191b9c23
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
42 lines (35 sloc) 2.29 KB
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="CouseWork.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:CouseWork"
xmlns:view="clr-namespace:CouseWork.View"
Shell.FlyoutBehavior="Disabled">
<FlyoutItem Route="secondhand">
<ShellContent Title="loginPage" ContentTemplate="{DataTemplate view:LoginPage}"
Route="loginPage"
>
<!--<ShellContent Title="TypePage" ContentTemplate="" Route="{DataTemplate view:HomeContent}"></ShellContent>-->
</ShellContent>
<ShellContent Title="RegisterPage" ContentTemplate="{DataTemplate view:RegisterPage}" Route="registerPage"></ShellContent>
<ShellContent
Title="home"
ContentTemplate="{DataTemplate view:HomeContent}"
Route="home" />
<ShellContent Title="InsertItems(You are the seller)"
ContentTemplate="{DataTemplate view:ItemEntry}"
Route="ItemEntrys"
>
</ShellContent>
<ShellContent Title="AllType" ContentTemplate="{DataTemplate view:AllType}" Route="AllType"></ShellContent>
<ShellContent Title="TypeEntrys" ContentTemplate="{DataTemplate view:TypeEntry}" Route="TypeEntrys"></ShellContent>
<ShellContent Title="UserDetails" ContentTemplate="{DataTemplate view:UserView}" Route="UserDetails"></ShellContent>
<ShellContent Title="DetailsPage" Route="ItemDetails" ContentTemplate="{DataTemplate view:DetailsView}"></ShellContent>
<ShellContent Title="AllCom" Route="AllCom" ContentTemplate="{DataTemplate view:ComView}"></ShellContent>
<ShellContent Title="ComEntrys" ContentTemplate="{DataTemplate view:ComEditor}" Route="ComEditor"></ShellContent>
<ShellContent Title="ShoppingHistory" ContentTemplate="{DataTemplate view:AllHistory}" Route="History"></ShellContent>
<ShellContent Title="ShoppingCart" ContentTemplate="{DataTemplate view:CartHistoryView}" Route="ShoppingCart"></ShellContent>
<ShellContent Title="SearchItem" ContentTemplate="{DataTemplate view:SearchView}" Route="SearchView"></ShellContent>
</FlyoutItem>
</Shell>