-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaPage.xaml
23 lines (20 loc) · 943 Bytes
/
MaPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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"
xmlns:editors="clr-namespace:Syncfusion.Maui.Inputs;assembly=Syncfusion.Maui.Inputs"
x:Class="MauApp.MaPage"
x:Name="this"
BindingContext="{x:Reference this}">
<StackLayout>
<editors:SfComboBox x:Name="comboBox"
WidthRequest="250"
DisplayMemberPath = "Name"
TextMemberPath = "Name"
ItemsSource="{Binding SocialMedias}" />
<editors:SfAutocomplete x:Name="autocomplete"
WidthRequest="250"
DisplayMemberPath = "Name"
TextMemberPath = "Name"
ItemsSource="{Binding SocialMedias}" />
</StackLayout>
</ContentPage>