0
7
使用道具 举报
174
1234
正版授权组
void GridView_KeyDown(object sender, KeyEventArgs e) { if (e.KeyData == (Keys.Control | Keys.C)) { GridView view = sender as GridView; if (view != null && !view.IsEditing) { string val = view.GetFocusedDisplayText(); if (!string.IsNullOrEmpty(val)) { Clipboard.SetText(val); e.Handled = true; } } } }
Archiver|手机版|小黑屋|开发者网 ( 苏ICP备08004430号-2 )版权所有:南京韵文科技有限公司 苏公网安备32011302322501号
GMT+8, 2025-4-20 21:46
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.