GridControl 设置combobox下拉框  

//设置combobox下拉框
        private void GetComboBox(string str)
        {
            RepositoryItemComboBox combobox = new RepositoryItemComboBox();
            combobox.Items.Add(str);
            combobox.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            gridControl1.RepositoryItems.Add(combobox);
            this.gridView1.Columns["Product"].ColumnEdit = combobox;
        }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-15
相关资源
相似解决方案