分类

链接

2025 年 7 月
 123456
78910111213
14151617181920
21222324252627
28293031  

近期文章

热门标签

新人福利,免费薅羊毛

C#实现组合键

 #region 快捷键         private void Payee_KeyUp(object sender, KeyEventArgs e)         {             switch (e.KeyCode)             {                 case Keys.Enter:                     if ((Control.ModifierKeys > Keys.Control) != 0)                     {                         btnSaveBak_Click(this, EventArgs.Empty);                     }                     break;                 case Keys.Escape:                     btnEsc_Click(this, EventArgs.Empty);           ...

.NET 暂无评论 阅读(2,636)