You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.2 KiB
44 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="PocketBook.MarkPage"
|
|
xmlns:local="clr-namespace:PocketBook"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit">
|
|
|
|
<Grid RowDefinitions="auto, *">
|
|
<StackLayout Orientation="Vertical">
|
|
<StackLayout Orientation="Horizontal" VerticalOptions="Start" Padding="5,10,0,10">
|
|
<StackLayout Orientation="Horizontal" HorizontalOptions="StartAndExpand">
|
|
<Image Source="chevron_left.png">
|
|
<Image.Behaviors>
|
|
<toolkit:IconTintColorBehavior TintColor="{StaticResource Primary}"/>
|
|
</Image.Behaviors>
|
|
</Image>
|
|
</StackLayout>
|
|
<Label Text="Note" Style="{StaticResource TitleLabelStyle}"/>
|
|
<ImageButton x:Name="imageArrows" Style="{StaticResource RightIconToolBar}" Source="arrows.png">
|
|
<ImageButton.Behaviors>
|
|
<toolkit:IconTintColorBehavior TintColor="{StaticResource Primary}"/>
|
|
</ImageButton.Behaviors>
|
|
</ImageButton>
|
|
</StackLayout>
|
|
<Line BackgroundColor="{StaticResource LineColor1}"/>
|
|
|
|
</StackLayout>
|
|
|
|
<ScrollView Grid.Row="2">
|
|
<StackLayout>
|
|
<local:Filtrage Dataname="★" Margin="0,0,0,5" NumberData="1"/>
|
|
<Line Style="{StaticResource LineStyle}"/>
|
|
<local:Filtrage Dataname="★★" Margin="0,0,0,5" NumberData="6"/>
|
|
<Line Style="{StaticResource LineStyle}"/>
|
|
<local:Filtrage Dataname="★★★" Margin="0,0,0,5" NumberData="6"/>
|
|
<Line Style="{StaticResource LineStyle}"/>
|
|
<local:Filtrage Dataname="★★★★" Margin="0,0,0,5" NumberData="3"/>
|
|
<Line Style="{StaticResource LineStyle}"/>
|
|
<local:Filtrage Dataname="★★★★★" Margin="0,0,0,5" NumberData="2"/>
|
|
</StackLayout>
|
|
|
|
</ScrollView>
|
|
</Grid>
|
|
</ContentPage> |