Jump to: navigation, search

Changes


Version 3.6 (WinX)

858 bytes added, 10:22, 28 August 2019
{{Attention|There are mandatory [[#Xaml Changes|Xaml changes]] and existing customizings need to be updated.}}
 
= Initial Release =
=== New features ===
* It is now possible to use external Bluetooth RFID Readers to scan [[RFID_tags#tab=WinX_External_Scanner|RFID Tags]] in UBIK.
[[Category:Version 3.6|Version 3.6 (WinX)]]
=== Enhancements ===
<ContentControl ContentTemplate="{Binding TemplateService[UBIKChildPageAction]}" />
</source>
 
== Use SelectionBoundListView instead of ListView ==
A SelectionBoundListView was already available in earlier versions but not mandatory. For performance improvements, it is now '''mandatory''' wherever you display {{UBIK}} content (objects, properties, etc.).
You need to add a namespace like <code>xmlns:uc="using:UBIK.WinX.Controls"</code> to your Xaml file and use it like <code><uc:SelectionBoundListView ... /></code>.
{{Hint|Technically speaking, SelectionBoundListView informs item view models when their corresponding items are visualized. This way, view models can skip a lot of unnecessary work (on the UI) when their views are not visible. '''If the regular ListView is used instead, the item views will not reflect content changes until the page is reloaded/refreshed.'''}}