Changes

Active List Client

20 bytes added, 27 April
/* XAML */
<tabs>
<tab name="Mobile (MAUI)">
 
 
'''after the change:'''
<source lang = "xml">
xmlns:controls="clr-namespace:UBIK.MAUI.Controls"
Style="{DynamicResource UBIKListView}" />
</source>
</tab>
<tab name="UWP">
<source lang = "xml">
xmlns:controls="using:UBIK.WinX.Controls"
<controls:ComboBoxExt
x:Name="ComboBox"
Grid.ColumnSpan="2"
HorizontalAlignment="Stretch"
DisplayMemberPath="DisplayText"
ItemsSource="{Binding PropertyViewModel.SelectiveItems}"
PlaceholderText="{Binding PropertyEdit_PickerPlaceholder, Source={StaticResource AppResources}}"
SelectedValue="{Binding PropertyValue, Mode=TwoWay}"
SelectedValuePath="Value"
Visibility="{Binding PropertyViewModel.ShowComboBox, Converter={StaticResource BoolToVisConverter}}" />
</source>
</tab>
<tab name="Mobile (MAUI) '''before the change">:'''
<source lang = "xml">
xmlns:controls="clr-namespace:UBIK.MAUI.Controls"
</source>
</tab>
 <tab name="UWP before ">  '''after the change:'''<source lang = "xml">xmlns:controls="using:UBIK.WinX.Controls" <controls:ComboBoxExt x:Name="ComboBox" Grid.ColumnSpan="2" HorizontalAlignment="Stretch" DisplayMemberPath="DisplayText" ItemsSource="{Binding PropertyViewModel.SelectiveItems}" PlaceholderText="{Binding PropertyEdit_PickerPlaceholder, Source={StaticResource AppResources}}" SelectedValue="{Binding PropertyValue, Mode=TwoWay}" SelectedValuePath="Value" Visibility="{Binding PropertyViewModel.ShowComboBox, Converter={StaticResource BoolToVisConverter}}" /></source>  '''before the change:'''
<source lang = "xml">
xmlns:controls="using:UBIK.WinX.Controls"
746
edits