29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="WguApp.Controls.CustomButton"
|
|
x:Name="ThisControl">
|
|
<Border>
|
|
<Grid BackgroundColor="#002f51"
|
|
Padding="10"
|
|
ColumnDefinitions="*, Auto">
|
|
|
|
<Grid.GestureRecognizers>
|
|
<TapGestureRecognizer Tapped="TapGestureRecognizer_OnTapped" NumberOfTapsRequired="1" />
|
|
</Grid.GestureRecognizers>
|
|
|
|
<Label Grid.Column="0"
|
|
Text="{Binding Text, Source={x:Reference ThisControl}}"
|
|
FontSize="15"
|
|
VerticalOptions="Center"
|
|
TextColor="AliceBlue"
|
|
HorizontalOptions="Start"/>
|
|
|
|
<Label Grid.Column="1"
|
|
Text="{Binding DateText, Source={x:Reference ThisControl}}"
|
|
FontSize="12"
|
|
VerticalOptions="Center"
|
|
TextColor="Gray"
|
|
Margin="10,0,0,0"/> </Grid>
|
|
</Border>
|
|
</ContentView> |