开发者

Tool Strip Container Tools Strip Lost Focus and Double Click

开发者 https://www.devze.com 2023-03-29 01:19 出处:网络
VB.Net 2008 Express Edition \"Form1\" has a ToolStripContainer1.TopToolStripPanel which contains a ToolStrip with buttons.The buttons work on ONE click when \"Form1\" is active.If I click on another

VB.Net 2008 Express Edition

"Form1" has a ToolStripContainer1.TopToolStripPanel which contains a ToolStrip with buttons. The buttons work on ONE click when "Form1" is active. If I click on another window and then return to "Form1" the ToolStrip buttons take TWO clicks to activate. The first click returns focus to "Form1" and the subsequent click f开发者_StackOverflow中文版ires the button event. I want the buttons to work on the first click and not require two clicks.

Note that ordinary buttons on "Form1" that are not part of the ToolStrip work on the first click when returning from another window/form!!!!????


That's standard behavior. You can see Microsoft Outlook does the same thing if it doesn't have focus and you click on a tool button that is visible on the screen.

But you can override that behavior with your own version:

Public Class ToolStripEx
  Inherits ToolStrip

  Private Const WM_MOUSEACTIVE As Int32 = &H21

  Public Sub New()
    MyBase.New()
  End Sub

  Protected Overrides Sub WndProc(ByRef m As Message)
    If m.Msg = WM_MOUSEACTIVE AndAlso Me.CanFocus AndAlso Not Me.Focused Then
      Me.Focus()
    End If
    MyBase.WndProc(m)
  End Sub

End Class
0

精彩评论

暂无评论...
验证码 换一张
取 消