We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当Items使用如下的数据绑定时, 最后一个节点无法展开;
Items = new List<TreeComboBoxItemViewModel>( ) { new TreeComboBoxItemViewModel() { ItemName = "Item 2", Children = new List<TreeComboBoxItemViewModel>() { new TreeComboBoxItemViewModel { ItemName = "Item 2-2" }, } }, new TreeComboBoxItemViewModel() { ItemName = "Item 3", }, new TreeComboBoxItemViewModel() { ItemName = "Item 4", }, new TreeComboBoxItemViewModel() { ItemName = "Item 1", Children = new List<TreeComboBoxItemViewModel>() { new TreeComboBoxItemViewModel { ItemName = "Item 1-1" }, new TreeComboBoxItemViewModel { ItemName = "Item 1-2" }, new TreeComboBoxItemViewModel { ItemName = "Item 1-3", Children = new List<TreeComboBoxItemViewModel>() { new TreeComboBoxItemViewModel { ItemName = "Item 1-3-1" } } }, } }, };
The text was updated successfully, but these errors were encountered:
默认开启虚拟化导致的,可以先使用正常的ItemsPanel
<u:TreeComboBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel /> </ItemsPanelTemplate> </u:TreeComboBox.ItemsPanel>
Sorry, something went wrong.
No branches or pull requests
当Items使用如下的数据绑定时, 最后一个节点无法展开;
The text was updated successfully, but these errors were encountered: