Panel not getting focus

后端 未结 6 2087
小鲜肉
小鲜肉 2020-11-22 14:42

I am continuing to program some kind of keyboard navigation in my simple graphic program (using C#). And I ran into trouble once again.

相关标签:
6条回答
  • 2020-11-22 14:51

    The code from Hans Passant translated to VB.NET

    Imports System
    Imports System.Drawing
    Imports System.Windows.Forms
    
    Public Class SelectablePanel
        Inherits Panel
    
        Public Sub New()
            Me.SetStyle(ControlStyles.Selectable, True)
            Me.TabStop = True
        End Sub
        
        Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
            Me.Focus()
            MyBase.OnMouseDown(e)
        End Sub
    
        Protected Overrides Function IsInputKey(ByVal keydata As Keys) As Boolean
            If (keydata = Keys.Up OrElse keydata = Keys.Down) Then Return True
            If (keydata = Keys.Left OrElse keydata = Keys.Right) Then Return True
            Return MyBase.IsInputKey(keydata)
        End Function
    
        Protected Overrides Sub OnEnter(ByVal e As EventArgs)
            Me.Invalidate()
            MyBase.OnEnter(e)
        End Sub
    
        Protected Overrides Sub OnLeave(ByVal e As EventArgs)
            Me.Invalidate()
            MyBase.OnLeave(e)
        End Sub
    
        Protected Overrides Sub OnPaint(ByVal pe As PaintEventArgs)
            MyBase.OnPaint(pe)
            If (Me.Focused) Then
                Dim rc As Rectangle = Me.ClientRectangle
                rc.Inflate(-2, -2)
                ControlPaint.DrawFocusRectangle(pe.Graphics, rc)
            End If
        End Sub
    
    End Class
    
    0 讨论(0)
  • 2020-11-22 14:51

    Panels are not getting focus, you have to select the panel if you want to track leave and enter events

    call panel1.Select() in MouseClick Event

    0 讨论(0)
  • 2020-11-22 14:58

    call focus in click event

    private void Panel_Click(object sender, EventArgs e)
        {
            Panel.Focus();
        }
    
    0 讨论(0)
  • 2020-11-22 15:06

    The simplest trick I use when for any reason I can’t use the parent Form KeyPreview property to make the Form handle key events, is to put a Textbox on

    The panel:

    Panel.Controls.Add(_focusTextBox = new TextBox() { Visible = true , Left = -300, TabIndex = 0});   
    

    And use it to capture KeyDown event:

    _focusTextBox.KeyDown += panel_KeyDown;
    

    The last step is to set focus to this TextBox when other controls on the panel clicked:

    _focusTextBox.Focus();
    
    0 讨论(0)
  • 2020-11-22 15:07

    To get the focus,check for MouseEnter event in Properties window.

    Write below code:

    private void mainPanel_MouseEnter(object sender, EventArgs e)
    {
        mainPanel.Focus();
    }
    
    0 讨论(0)
  • 2020-11-22 15:16

    The Panel class was designed as container, it avoids taking the focus so a child control will always get it. You'll need some surgery to fix that. I threw in the code to get cursor key strokes in the KeyDown event as well:

    using System;
    using System.Drawing;
    using System.Windows.Forms;
    
    class SelectablePanel : Panel {
        public SelectablePanel() {
            this.SetStyle(ControlStyles.Selectable, true);
            this.TabStop = true;
        }
        protected override void OnMouseDown(MouseEventArgs e) {
            this.Focus();
            base.OnMouseDown(e);
        }
        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);
        }
        protected override void OnEnter(EventArgs e) {
            this.Invalidate();
            base.OnEnter(e);
        }
        protected override void OnLeave(EventArgs e) {
            this.Invalidate();
            base.OnLeave(e);
        }
        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);
            }
        }
    }
    
    0 讨论(0)
提交回复
热议问题