Completed
Last Updated: 02 Nov 2020 11:48 by ADMIN
Release R3 2020 SP1

In this particular scenario, the RadListBox is placed inside DataTemplate and its ItemsSource property is bound to CollectionViewSource.View. Now when we try to bind the SelectedItem property, the binding fails. The reason behind this is that when the RadListBox is loading, the CurrentItem of the CollectionViewSource is set to the SelectedItem property after the binding kicks in. Which will break the binding. To workaround this we can set the CurrentItem to Null.

MyCollectionViewSource.View.MoveCurrentToPosition(-1);

Completed
Last Updated: 20 May 2021 10:23 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
The IsSynchronizedWithCurrentItem property works only in the Single SelectionMode. With the other two modes, the synchronization works partially - only initially. Changes in the control's selection doesn't update the CurrentItem of the associated collection view.
Completed
Last Updated: 19 Apr 2022 06:45 by ADMIN
Release LIB 2022.1.425 (25 April 2022)

RadListBox allows you to navigate between the items using the arrow keys on the keyboard. To enable this, you will need to select any item in order to focus the control. Using touch input to select an item, instead of the mouse, is breaking the arrow keys navigation. Pressing up and down no longer navigates to the previous and next item.

To work this around, subscribe the RadListBox control to the TouchManager.Tap event and focus the tapped RadListBoxItem in the event handler.

public MainWindow()
{
	InitializeComponent();
	TouchManager.AddTapEventHandler(this.listBox, this.OnTap, true);
}

private void OnTap(object sender, TapEventArgs e)
{
	var tapElement = (FrameworkElement)e.OriginalSource;
	var item = tapElement.ParentOfType<RadListBoxItem>();
	if (item != null)
	{
		item.Focus();
	}
}

1 2 3 4 5