17 lines
1017 B
XML
Executable File
17 lines
1017 B
XML
Executable File
<?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="HomePantry.Views.ProductDetailPage"
|
|
Title="Szczegóły produktu">
|
|
<Border StrokeShape="RoundRectangle 12" Margin="15" Padding="20" Shadow="">
|
|
<Grid RowDefinitions="*,*,*,*,*,*,*">
|
|
<Label FontSize="22" FontAttributes="Bold" x:Name="lblNazwa" />
|
|
<Label Grid.Row="1" x:Name="lblKategoria" />
|
|
<Label Grid.Row="2" x:Name="lblIlosc" />
|
|
<Label Grid.Row="3" x:Name="lblWaznosc" />
|
|
<Label Grid.Row="4" x:Name="lblStatus" />
|
|
<Label Grid.Row="5" x:Name="lblUwagi" LineBreakMode="WordWrap" />
|
|
<Button Text="Powrót do kategorii" Margin="0,20,0,0" Clicked="Button_Clicked" />
|
|
</Grid>
|
|
</Border>
|
|
</ContentPage> |