Difference between revisions of "Version 1.1 (Xamarin)"
(→1.1.xx on 2020-xx-xx) |
|||
Line 8: | Line 8: | ||
* Improved infrastructure document Files download behaviour. | * Improved infrastructure document Files download behaviour. | ||
− | + | ||
− | + | ||
− | + | ||
=== 1.1.64 on 2020-10-16 === | === 1.1.64 on 2020-10-16 === | ||
Line 85: | Line 85: | ||
= XAML changes = | = XAML changes = | ||
+ | |||
+ | == Chlld list item tap behavior == | ||
+ | Previously, the tap behavior to navigate to child items is included by default in the <code>ContentListView</code> style definition. Due to technical reasons, that is no longer the case. | ||
+ | |||
+ | If you have customized certain templates before and they contain child lists, it's now necessary to enable the navigation behavior like the following. | ||
+ | |||
+ | <source lang = "xml"> | ||
+ | <DataTemplate ... | ||
+ | xmlns:behaviors="clr-namespace:UBIK.CPL.Behaviors;assembly=UBIK.CPL" | ||
+ | xmlns:controls="clr-namespace:UBIK.CPL.Controls;assembly=UBIK.CPL"> | ||
+ | ... | ||
+ | <controls:SfListViewExt ... | ||
+ | ItemsSource="{Binding Children.Items}" | ||
+ | Style="{DynamicResource ContentListView}"> | ||
+ | <controls:SfListViewExt.Behaviors> | ||
+ | <behaviors:EventToCommandBehavior | ||
+ | Command="{Binding NavigateToChildrenCommand}" | ||
+ | Converter="{StaticResource ItemTappedEventArgsToViewModelConverter}" | ||
+ | EventName="ItemTapped" /> | ||
+ | </controls:SfListViewExt.Behaviors> | ||
+ | </controls:SfListViewExt> | ||
+ | </DataTemplate> | ||
+ | </source> | ||
+ | |||
+ | == Editor templates == | ||
+ | Previously, the property editor templates (of different types) did not include certain parts such as the header and the generic confirm/reset/cancel buttons. | ||
+ | |||
+ | Starting from this version, you can customize the entire editor area (top app bar aside) in these templates. | ||