<br>
[[Category:Client|XAML Tips]][[Category:WinX|XAML Tips]][[Category:XAML|XAML Tips]][[Category:Xamarin|XAML Tips]]
=== SaveAndCommitCommand ===
<br>
[[Category== Default Tab Selection ==The tab selection in UBIKContentView defaults to the first tab, which is Children objects. However, for cases where it makes more sense to display Properties or Documents by default, it is possible to change the tab selection using the following classifications:Client|XAML Tips]]* [[Category:WinX|XAML TipsSYSCLS_SHOWDOCUMENTS]]* [[Category:XAML|XAML TipsSYSCLS_SHOWPROPERTIES]][[Category:Xamarin{{Attention|XAML Tips]]Adding the classification to a metaclass is enough for UWP. However, Xamarin currently requires additional customizing to make use of the TabSelector property.}} ==== Implementation in Xamarin ====One approach is to add a DataTrigger to the SfTabView found in UBIKContentArea that is triggered by the value of the TabSelector property, as shown below;<source lang = "xml"><tabView:SfTabView VisibleHeaderCount="3" > <!-- tabView:SfTabItems ... --> <tabView:SfTabView.Triggers> <DataTrigger TargetType="tabView:SfTabView" Binding="{Binding TabSelector}" Value="PropertiesTab"> <Setter Property="SelectedIndex" Value="1"/> </DataTrigger> <DataTrigger TargetType="tabView:SfTabView" Binding="{Binding TabSelector}" Value="DocumentsTab"> <Setter Property="SelectedIndex" Value="2"/> </DataTrigger> </tabView:SfTabView.Triggers></tabView:SfTabView></source><br><br>
== FlipView ==