反编译的源代码
public class DataGrIDRowClipboardEventArgs { /// <summary> /// This List should be used to modify,add or remove a cell /// content before it gets stored into the clipboard. /// </summary> public List<DataGrIDClipboardCellContent> ClipboardRowContent { ...
因此,例如,如果您有两列而您只想要第一列,则可以删除第二项,如下所示:
private voID grID_copyingRowClipboardContent( object sender,DataGrIDRowClipboardEventArgs e){ e.ClipboardRowContent.RemoveAt(1);}总结
以上是内存溢出为你收集整理的在WPF DataGrid中自定义Ctrl C行为全部内容,希望文章能够帮你解决在WPF DataGrid中自定义Ctrl C行为所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)