分类

链接

2025 年 9 月
1234567
891011121314
15161718192021
22232425262728
2930  

近期文章

热门标签

新人福利,免费薅羊毛

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,651)