, , , 1, :
cbTheme.SelectedIndex = 1;
, , , . , , Googlers , , , , , , , ItemSource a DataTable, , , :
int matchedIndex = 0;
if (dt != null & dt.Rows != null)
{
if (dt.Rows.Count > 0)
{
foreach (DataRow dr in dt.Rows)
{
string myRowValue = dr["SOME_COLUMN"] != null ? dr["SOME_COLUMN"].ToString() : String.Empty;
if (myRowValue == "Value I Want To Set")
break;
else
matchedIndex++;
}
}
}
cbTheme.SelectedIndex = matchedIndex;.
ComboBoxItem DataRow , ComboBox , OP.