Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Visual Basic
  4. Pop Out Side Menu (Visual Studio Style)

Pop Out Side Menu (Visual Studio Style)

Scheduled Pinned Locked Moved Visual Basic
csharpvisual-studiodatabasewpfsysadmin
4 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • E Offline
    E Offline
    eddieangel
    wrote on last edited by
    #1

    I have a database search function on a Windows form app that needs to be readily accessible, but I don't want it displayed on the form at all times as it is confusing since you can search the same fields that you can edit on screen. Long story short is I would like the search menu to behave like the toolbox / server explorer / data source left docked tool strip in VS 2008. Right now I have created a tool strip and docked it left and have the buttons the way I want them, but I do not have an eloquent solution for the pop out and pop in functionality. I put a panel into place that has the search functionality and I simply made it visible = false until the search button is pressed.

        If pnlSrch.Visible = False Then
            pnlSrch.Visible = True
            gbPhoto.Visible = False
        Else
            pnlSrch.Visible = False
            gbPhoto.Visible = True
        End If
    

    Is there a more eloquent method of creating a slide in slide out side menu without using WPF?

    T T D 3 Replies Last reply
    0
    • E eddieangel

      I have a database search function on a Windows form app that needs to be readily accessible, but I don't want it displayed on the form at all times as it is confusing since you can search the same fields that you can edit on screen. Long story short is I would like the search menu to behave like the toolbox / server explorer / data source left docked tool strip in VS 2008. Right now I have created a tool strip and docked it left and have the buttons the way I want them, but I do not have an eloquent solution for the pop out and pop in functionality. I put a panel into place that has the search functionality and I simply made it visible = false until the search button is pressed.

          If pnlSrch.Visible = False Then
              pnlSrch.Visible = True
              gbPhoto.Visible = False
          Else
              pnlSrch.Visible = False
              gbPhoto.Visible = True
          End If
      

      Is there a more eloquent method of creating a slide in slide out side menu without using WPF?

      T Offline
      T Offline
      tosch
      wrote on last edited by
      #2

      Check out the tools some vendors like www.devcomponents.com sell.

      Tosch

      1 Reply Last reply
      0
      • E eddieangel

        I have a database search function on a Windows form app that needs to be readily accessible, but I don't want it displayed on the form at all times as it is confusing since you can search the same fields that you can edit on screen. Long story short is I would like the search menu to behave like the toolbox / server explorer / data source left docked tool strip in VS 2008. Right now I have created a tool strip and docked it left and have the buttons the way I want them, but I do not have an eloquent solution for the pop out and pop in functionality. I put a panel into place that has the search functionality and I simply made it visible = false until the search button is pressed.

            If pnlSrch.Visible = False Then
                pnlSrch.Visible = True
                gbPhoto.Visible = False
            Else
                pnlSrch.Visible = False
                gbPhoto.Visible = True
            End If
        

        Is there a more eloquent method of creating a slide in slide out side menu without using WPF?

        T Offline
        T Offline
        Thomas Stockwell
        wrote on last edited by
        #3

        I have seen many articles on this website that could help you. Consider doing a search. The manual/experimental way would be to create a timer that will move/collapse the panel to the side of the screen by altering the width, height, x, and y.

        Regards, Thomas Stockwell Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. Visit my Blog

        1 Reply Last reply
        0
        • E eddieangel

          I have a database search function on a Windows form app that needs to be readily accessible, but I don't want it displayed on the form at all times as it is confusing since you can search the same fields that you can edit on screen. Long story short is I would like the search menu to behave like the toolbox / server explorer / data source left docked tool strip in VS 2008. Right now I have created a tool strip and docked it left and have the buttons the way I want them, but I do not have an eloquent solution for the pop out and pop in functionality. I put a panel into place that has the search functionality and I simply made it visible = false until the search button is pressed.

              If pnlSrch.Visible = False Then
                  pnlSrch.Visible = True
                  gbPhoto.Visible = False
              Else
                  pnlSrch.Visible = False
                  gbPhoto.Visible = True
              End If
          

          Is there a more eloquent method of creating a slide in slide out side menu without using WPF?

          D Offline
          D Offline
          darkelv
          wrote on last edited by
          #4

          Visual Studio IDE like Dock Container[^] The main area will become a MDI, though.

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups