本文介绍了Combobox.Findstringexact()返回-1作为索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



在我的代码中,即使组合框具有该元素,combobox.findstringexact也会返回-1。请告诉我代码中的问题。这个愚蠢的问题正在浪费我宝贵的时间。我知道我在这里遗漏了一些东西。谢谢

Hello guys,

in my code combobox.findstringexact is returning -1 even when the combobox has that element. Please let me know whats the problem in my code. This silly problem is wasting my precious time. I know i am missing something here. Thanks

comboBoxLanguage.DataSource = Enum.GetValues(typeof(ATXDataManager.Constants.Language));
comboBoxLanguage.SelectedIndex = comboBoxLanguage.FindStringExact(objAdminData.LANGUAGE.Value.ToString());

推荐答案


这篇关于Combobox.Findstringexact()返回-1作为索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 09:38