How to write a C# app that has a Toolbox like the one in VS

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dan Tallent

    How to write a C# app that has a Toolbox like the one in VS

    I would like to have a toolbar down the left side of my application that
    will very much like the Toolbox that you find in the Visual Studio IDE.
    The toolbox in VS has a way to lock the pullout so that it does not retract.
    It also groups things by category.

    Can anyone point me in the right direction on how to duplicate this
    extremely cool feature. Thanks

    Dan Tallent


  • DeveloperX

    #2
    Re: How to write a C# app that has a Toolbox like the one in VS

    On 7 Feb, 16:19, "Dan Tallent" <s...@microsoft .comwrote:
    I would like to have a toolbar down the left side of my application that
    will very much like the Toolbox that you find in  the Visual Studio IDE.
    The toolbox in VS has a way to lock the pullout so that it does not retract.
    It also groups things by category.
    >
    Can anyone point me in the right direction on how to duplicate this
    extremely cool feature.  Thanks
    >
    Dan Tallent
    You could take a look here:
    ICSharpCode has 20 repositories available. Follow their code on GitHub.


    It's a fully open source Visual Studio replacement with code and the
    panels you want.

    Comment

    • Dan Tallent

      #3
      Re: How to write a C# app that has a Toolbox like the one in VS

      "DeveloperX " <ianathomeagain @googlemail.com wrote in message
      news:b5130e18-2af6-46fe-97b4-9413d265c006@c4 g2000hsg.google groups.com...
      On 7 Feb, 16:19, "Dan Tallent" <s...@microsoft .comwrote:
      I would like to have a toolbar down the left side of my application that
      will very much like the Toolbox that you find in the Visual Studio IDE.
      The toolbox in VS has a way to lock the pullout so that it does not
      retract.
      It also groups things by category.
      >
      Can anyone point me in the right direction on how to duplicate this
      extremely cool feature. Thanks
      >
      Dan Tallent
      You could take a look here:
      ICSharpCode has 20 repositories available. Follow their code on GitHub.


      It's a fully open source Visual Studio replacement with code and the
      panels you want.


      Thanks, I'll check it out!



      Comment

      • Gordon Robinson

        #4
        C# Toolbox control

        I was recently writing a forms designer and used the #develop code as the basis for it.

        I was a bit disappointed that the toolbox had a VS2003 look and feel to it though so I decided to write my own one which I've published on my blog:



        It needs completed but it was good enough for the project I was working on.

        Comment

        Working...