728x90
RepositoryItemCheckEdit checkEdit = new RepositoryItemCheckEdit();
checkEdit.ImageOptions.ImageChecked = Image.FromFile("\\img\\Check_Y.png");
checkEdit.ImageOptions.ImageUnchecked = Image.FromFile("\\img\\Check_N.png");
checkEdit.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
checkEdit.ValueChecked = "Y";
checkEdit.ValueUnchecked = "N";
grd.RepositoryItems.Add(checkEdit);
gv.Columns["s"].ColumnEdit = checkEdit;
728x90
반응형
'Software > C#' 카테고리의 다른 글
C# 시작하기 - Mail Send 2 (0) | 2025.01.27 |
---|---|
C# 시작하기 - Mail Send (0) | 2025.01.27 |
C# DevExpress - WinForm GridControl ImageCombo (0) | 2025.01.27 |
C# DevExpress - WinForm GridControl ComboBox (0) | 2025.01.27 |
C# DevExpress - Winform GridControl Cell DataBar (0) | 2025.01.27 |