提升C# Panel用戶控制:解決焦點問題
在使用C#的圖形程式中,需要鍵盤輸入的Panel常常會遇到一些問題。一個常見的問題是Panel無法獲得焦點,導致無法觸發KeyUp/KeyDown/KeyPress以及GotFocus/LostFocus事件。
為了增強Panel的功能,一個更優雅的解決方案是修改Panel基類,方法如下:
啟用可選擇性:
<code class="language-csharp"> SetStyle(ControlStyles.Selectable, true); TabStop = true;</code>
滑鼠點選強制取得焦點:
<code class="language-csharp"> protected override void OnMouseDown(MouseEventArgs e) { this.Focus(); base.OnMouseDown(e); }</code>
重寫輸入按鍵處理:
<code class="language-csharp"> protected override bool IsInputKey(Keys keyData) { if (keyData == Keys.Up || keyData == Keys.Down) return true; if (keyData == Keys.Left || keyData == Keys.Right) return true; return base.IsInputKey(keyData); }</code>
自訂焦點視覺效果:
<code class="language-csharp"> protected override void OnEnter(EventArgs e) { this.Invalidate(); base.OnEnter(e); } protected override void OnLeave(EventArgs e) { this.Invalidate(); base.OnLeave(e); }</code>
顯示焦點矩形:
<code class="language-csharp"> protected override void OnPaint(PaintEventArgs pe) { base.OnPaint(pe); if (this.Focused) { var rc = this.ClientRectangle; rc.Inflate(-2, -2); ControlPaint.DrawFocusRectangle(pe.Graphics, rc); } }</code>
透過這些修改,Panel既可以被選中,又可以接收鍵盤輸入。提供的程式碼確保Panel在點擊時獲得焦點,並響應上下左右箭頭鍵。此外,當Panel獲得焦點時,它會在周圍顯示焦點矩形,從而增強使用者體驗。
以上是如何使 C# 面板接收鍵盤輸入並顯示焦點矩形?的詳細內容。更多資訊請關注PHP中文網其他相關文章!