parent
ac35cbd296
commit
23c7e44322
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
||||||
|
x:Class="PocketBook.AddBook">
|
||||||
|
|
||||||
|
<VerticalStackLayout>
|
||||||
|
<Label Text="This is a very important message!" />
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
</toolkit:Popup>
|
@ -0,0 +1,11 @@
|
|||||||
|
using CommunityToolkit.Maui.Views;
|
||||||
|
|
||||||
|
namespace PocketBook;
|
||||||
|
|
||||||
|
public partial class AddBook : Popup
|
||||||
|
{
|
||||||
|
public AddBook()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
@ -1,9 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="PocketBook.BookChange">
|
x:Class="PocketBook.BookChange"
|
||||||
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit">
|
||||||
<StackLayout Orientation="Horizontal" Margin="10,15,0,15">
|
<StackLayout Orientation="Horizontal" Margin="10,15,0,15">
|
||||||
<Image x:Name="imageName" WidthRequest="30" HeightRequest="30" />
|
<Image x:Name="imageName" WidthRequest="30" HeightRequest="30">
|
||||||
|
<Image.Behaviors>
|
||||||
|
<toolkit:IconTintColorBehavior TintColor="{StaticResource Primary}"/>
|
||||||
|
</Image.Behaviors>
|
||||||
|
</Image>
|
||||||
<Label x:Name="propertyName" TextColor="{StaticResource Primary}" FontAttributes="Bold" VerticalOptions="Center" Margin="15,0,0,0"/>
|
<Label x:Name="propertyName" TextColor="{StaticResource Primary}" FontAttributes="Bold" VerticalOptions="Center" Margin="15,0,0,0"/>
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
</ContentView>
|
</ContentView>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 2.3 KiB |
Loading…
Reference in new issue