-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCfMultiPickerPopup.xaml
More file actions
36 lines (34 loc) · 1.36 KB
/
Copy pathCfMultiPickerPopup.xaml
File metadata and controls
36 lines (34 loc) · 1.36 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
36
<?xml version="1.0" encoding="utf-8"?>
<common:LabelBase
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:common="clr-namespace:CraftUI.Library.Maui.Common"
x:Class="CraftUI.Library.Maui.Controls.CfMultiPickerPopup"
x:Name="Root">
<common:LabelBase.View>
<FlexLayout
Direction="Row"
Wrap="Wrap"
Margin="8,8,8,0"
MinimumHeightRequest="32"
BindingContext="{x:Reference Name=Root}"
BindableLayout.ItemsSource="{Binding SelectedStrings, Mode=TwoWay}">
<BindableLayout.ItemTemplate>
<DataTemplate>
<Border
BackgroundColor="{StaticResource Gray100}"
StrokeShape="RoundRectangle 12"
Padding="4"
StrokeThickness="0"
Margin="0,0,6,8">
<Label
Text="{Binding .}"
TextColor="{StaticResource Gray900}"
FontSize="14"
VerticalOptions="Center"/>
</Border>
</DataTemplate>
</BindableLayout.ItemTemplate>
</FlexLayout>
</common:LabelBase.View>
</common:LabelBase>