1-) C# DEVEXPRESS RMOS - BarEditItem kullanımı ve focus(odaklanma) yapmak için
1-) BarEditItem focus(odaklanma) yapmak için
txtFarkliCins.Links[0].Focus();
2-) BarEditItem - > repositoryItemComboBox1 -> item ekleme ve değer alma void
public void itemekle()
{
ComboBoxItemCollection coll = (txtCins.Edit as RepositoryItemComboBox).Items;
coll.BeginUpdate();
coll.Add("text");
coll.Add("text1");
coll.EndUpdate();
}
private void txtCins_EditValueChanged(object sender, EventArgs e)
RHMesaj_C.MyMessage(txtCins.EditValue.ToString());