auto hide toolstrip

Hi,

I am trying to create a beautifull program interface using VS2005.

I plan to create autohide toolstrip, but i can't fing how.

Anyone know to do this, please kindly help me

thank you



Answer this question

auto hide toolstrip

  • Hassano21436

    Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove

    If Me.ToolStrip1.Bounds.Contains(e.Location) Then

    Me.ToolStrip1.Visible = True

    Else

    Me.ToolStrip1.Visible = False

    End If

    End Sub



  • auto hide toolstrip