本文整理匯總了C#中System.Windows.Forms.ComboBox.SetItemData方法的典型用法代碼示例。如果您正苦於以下問題:C# ComboBox.SetItemData方法的具體用法?C# ComboBox.SetItemData怎麽用?C# ComboBox.SetItemData使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Windows.Forms.ComboBox
的用法示例。
在下文中一共展示了ComboBox.SetItemData方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: LoadCombo
//'''''''''''''''''''''''''''''''''
//'' Combobox related functions '''
//'''''''''''''''''''''''''''''''''
internal static void LoadCombo(string Table, ComboBox combo, ref string field, ref string valueField)
{
modConnection.ExecuteSql("Select * From " + Table);
combo.Items.Clear();
//UPGRADE_WARNING: (2080) IsEmpty was upgraded to a comparison and has a new behavior. More Information: http://www.vbtonet.com/ewis/ewi2080.aspx
if (!String.IsNullOrEmpty(valueField))
{
foreach (DataRow iteration_row in modConnection.rs.Tables[0].Rows)
{
combo.AddItem(Convert.ToString(iteration_row[field]));
combo.SetItemData(combo.GetNewIndex(), Convert.ToInt32(iteration_row[valueField]));
}
}
else
{
foreach (DataRow iteration_row_2 in modConnection.rs.Tables[0].Rows)
{
combo.AddItem(Convert.ToString(iteration_row_2[field]));
}
}
//If strDefault <> Empty Then
// combo = strDefault
//End If
}