20 lines
875 B
XML
20 lines
875 B
XML
<?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="NotesDataAnalyst.LinkInputPopup"
|
|
BackgroundColor="Transparent"
|
|
Padding="20">
|
|
|
|
<Frame BackgroundColor="White"
|
|
CornerRadius="10"
|
|
Padding="20"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="Center">
|
|
<StackLayout>
|
|
<Label Text="Введите URL ссылки" FontSize="18" HorizontalOptions="Center"/>
|
|
<Entry x:Name="urlEntry" Placeholder="https://example.com" Keyboard="Url"/>
|
|
<Button Text="Добавить" Clicked="OnAddButtonClicked"/>
|
|
<Button Text="Отмена" Clicked="OnCancelButtonClicked"/>
|
|
</StackLayout>
|
|
</Frame>
|
|
</ContentPage>
|