gpt4 book ai didi

winforms - Infragistics UltraCombo 上的预设值

转载 作者:行者123 更新时间:2023-12-04 07:10:03 24 4
gpt4 key购买 nike

我有一个基础设施 ultraCombo我设置为特定的 datasource .我想预先选择这些值之一,这样用户就不必选择它(大多数情况下它将是预先选择的值)。但是,当我设置 ultraCombo 时对于该值,它会将下拉列表修改为仅包含该单个值!

我试过使用 ultraCombo.value方法,ultraCombo.textbox.text方法等,它们的行为方式都相同。当我查看调试器时,完整列表似乎存在,只是没有显示。如何在不破坏下拉列表的情况下预先选择列表中的值?

最佳答案

最后使用以下代码让它工作:

Dim tempValue As String = myPreviousValue 'changes to the object loose the selected row--save it off and restore later 
MyUltraCombo.DataSource = queryDS.Tables(0) 'load the new data

'Restore the previous selection
If tempValue <> "" Then
For Each row As Infragistics.Win.UltraWinGrid.UltraGridRow In MyUltraCombo.Rows
If row.Cells(0).Value.ToString = tempValue Then
MyUltraCombo.SelectedRow = row
End If
Next
End If

关于winforms - Infragistics UltraCombo 上的预设值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/503339/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com