WPF
WPF Datagrid Cell Value Change
NicSub
2019. 6. 27. 21:13
728x90
반응형
데이터그리드 셀값 삭제하는방법이 어려워
셀값을 공백으로 붙여 넣었다.
private void Paste_Cell(int col_index, int row_index)
{
DataGridColumn column1 = dataGrid1.ColumnFromDisplayIndex(col_index);
column1.OnPastingCellClipboardContent(dataGrid1.Items[row_index], "");
}
반응형