如何更改repositorycombobox格式

时间:2016-08-23 10:45:20

标签: c# winforms repository devexpress

我想问一下如何更改repositoryitembox格式。 正如您在gridview显示屏上看到的那样

enter image description here

事先我已经在表单加载

上更改了日期格式列
gridView1.Columns["date"].DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
gridView1.Columns["date"].DisplayFormat.FormatString = "dd MMM yyyy";

我想更改存储库itembox格式。现在当我搜索格式时就像这样

enter image description here

编辑1: 填充存储库组合框的代码就像这样

  private void gridView1_CustomRowCellEdit(object sender, CustomRowCellEditEventArgs e)
    {
  GridView view = sender as GridView;
        for (int i = 0; i < gridView1.RowCount; i++)
        {

            if (gridView1.GetDataRow(i) == null)
            {
                break;
            }

            string date = gridView1.GetDataRow(i)["date"].ToString();
   if (!repositoryItemComboBox2.Items.Contains(date))
            {
                repositoryItemComboBox2.Items.Add(date);

            }
}
}

也许我认为,应该将字符串的值更改为日期

0 个答案:

没有答案