-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPopup.xaml
More file actions
35 lines (35 loc) · 1.37 KB
/
Copy pathPopup.xaml
File metadata and controls
35 lines (35 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8" ?>
<mopups:PopupPage
x:Class="MauiTelerikWindowsIssue.Popup"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:mopups="clr-namespace:Mopups.Pages;assembly=Mopups"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
Title="Popup"
BackgroundColor="#80000000"
CloseWhenBackgroundIsClicked="False">
<telerik:RadBorder
BackgroundColor="White"
CornerRadius="10"
Margin="10,0"
HeightRequest="200"
HorizontalOptions="Center"
VerticalOptions="Center"
WidthRequest="300">
<VerticalStackLayout Padding="10">
<Label Text="RadDatePicker:" />
<telerik:RadDatePicker x:Name="_DatePicker" />
<Label Text="RadComboBox:" Margin="0,10,0,0" />
<telerik:RadComboBox x:Name="_ComboBox">
<telerik:RadComboBox.ItemsSource>
<x:Array Type="{x:Type x:String}">
<x:String>1</x:String>
<x:String>2</x:String>
<x:String>3</x:String>
<x:String>4</x:String>
</x:Array>
</telerik:RadComboBox.ItemsSource>
</telerik:RadComboBox>
</VerticalStackLayout>
</telerik:RadBorder>
</mopups:PopupPage>