2012年9月4日
摘要: 用户自定义控件View Code public partial class GirdViewUserControl : DevExpress.XtraEditors.XtraUserControl { public event EventHandler MyKeyDown; public event EventHandler MyDoubleClick; public GirdViewUserControl() { InitializeComponent(); MyGridView.At... 阅读全文
posted @ 2012-09-04 22:54 freexiaoyu 阅读(5061) 评论(0) 推荐(0) 编辑
摘要: private void textEdit1_KeyDown(object sender, KeyEventArgs e) { string path = Application.StartupPath + "\\" + this.textEdit2.Text.Trim(); if (e.KeyCode == Keys.Enter) { if (!File.Exists(path)) { XtraMessageBox... 阅读全文
posted @ 2012-09-04 09:59 freexiaoyu 阅读(640) 评论(0) 推荐(0) 编辑