使用 RadComboBoxSort.None 对 RadComboBox 项目进行排序

发布于 2024-12-04 02:28:13 字数 242 浏览 2 评论 0原文

调用以下命令后 RadComboBox 的项目会发生什么情况:

myCombo.Sort = RadComboBoxSort.None;
myCombo.Items.Sort();

???

即使排序选项设置为 None,项目也会排序,但不会按 TextValue 排序。项目按随机模式排序,毫无意义。

What happens to RadComboBox's Items after you call:

myCombo.Sort = RadComboBoxSort.None;
myCombo.Items.Sort();

???

Even when sort option is set to None, Items are sorted, but it is not sorted neither by Text nor Value. An items are ordered by random pattern which make no sense.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

菩提树下叶撕阳。 2024-12-11 02:28:13

使用 SortItems() 方法而不是 Items.Sort()。

文档说这些方法是相同的:

RadComboBox1.SortItems();
RadComboBox1.Items.Sort(); 

但这并不完全正确。如果 Sort 属性设置为 None,SortItems 不会对项目进行排序,但 Items.Sort 会执行意想不到的操作。

Use SortItems() method instead of Items.Sort().

Documentation says that these approaches are equal:

RadComboBox1.SortItems();
RadComboBox1.Items.Sort(); 

That is not exactly true. If Sort property is set to None, SortItems leaves items unsorted, but Items.Sort will do something unexpected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文