void comboDropDown1_TextChanged(object sender, EventArgs e)
{
this.gridListControl1.DataSource = countries;
this.comboDropDown1.DroppedDown = true;
if (this.gridListControl1.Items.Count != 0)
{
this.gridListControl1.Focus();
this.gridListControl1.SelectedItem = this.gridListControl1.Items[0];
}
} |
void comboDropDown1_TextChanged(object sender, EventArgs e)
{
this.gridListControl1.DataSource = countries;
this.comboDropDown1.DroppedDown = true;
if (this.gridListControl1.Items.Count != 0)
{
this.gridListControl1.Grid.Model.Selections.Add(GridRangeInfo.Row(1));
}
} |