1
我正在使用Compact-Framework 3.5,適用於Windows Mobile的VS 2008。 我想類似的東西:如何在datagrid單元格中顯示圖像?
DataGridTableStyle ts = new DataGridTableStyle();
DataGridIconColumn dgic = new DataGridIconColumn();
dgic.ColumnIcon = Properties.Resources.MyIcon;
dgic.MappingName = "<your_column_name>";
dgic.HeaderText = "<your_column_header>";
ts.GridColumnStyles.Add(dgic);
myDataGrid.TableStyles.Add(ts);
創建DataGridIconColumn下課。
mappingName和headerText屬性有什麼區別?
AFAIR MappingName是要使用的數據表列的名稱,haederText是您將在篩選器上看到的內容。 – josef