我用GridLookUpEdit获得了表格。 DisplayMember类型为DateTime。因此,我将GridLookUpEdit FormatType设置为DateTime并将FormatString设置为“ d”。但是,当我在GridLookUpEdit中选择行时,所选值显示为零时间,如15.04.2014 0:00:00。如何避免这种情况?

最佳答案

当您选择一个特定的单元格并且如果该单元格设置为Editable时,将显示该单元格的编辑器。要使用特定的单元格编辑器,必须添加以下代码行:

// aDateColumn is the column you want to format
// Custom mask
RepositoryItemTextEdit columnEdit = new RepositoryItemTextEdit();
columnEdit.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
columnEdit.Mask.EditMask = "d";

aDateColumn.ColumnEdit = columnEdit;


更多信息here

关于c# - 如何在GridLookUpEdit中隐藏零?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23086909/

10-10 07:21