Completed
Last Updated: 03 Feb 2023 12:56 by ADMIN
Release LIB 2023.1.206 (6 Feb 2023)
Martin Ivanov
Created on: 16 Jan 2023 08:40
Category: MultiColumnComboBox
Type: Bug Report
0
MultiColumnComboBox: NotImplementedException thrown when the ItemsSourceProvider propety is assigned in a Style Setter

NotImplementedException is thrown if the ItemsSourceProvider property is set in a Style setter.

To work this around, implement custom GridViewItemsSourceProvider and override its CreateInstanceCore method.

public class CustomGridViewItemsSourceProvider : GridViewItemsSourceProvider
{
	protected override Freezable CreateInstanceCore()
	{
		return new CustomGridViewItemsSourceProvider();
	}
}

0 comments