How can I design a user interface with tabs like the one Google Chrome has, I mean each tab has to be able to:
- Maximize
- Close
- Dragged and be stand alone.
I'm using .net 2.0 (C#)
Thanks,
How can I design a user interface with tabs like the one Google Chrome has, I mean each tab has to be able to:
I'm using .net 2.0 (C#)
Thanks,
You may find it useful to look at an open source project such SharpDevelop I'm sure that have tabbed windows.
Try implementing each tab as a HTMLGenericControl("div") and then apply the following jquery scripts on the client side.
As far as the minimising of the tabs, you could simply add a small image to the right of the tab content which toggles the width of the tab based on the jquery click event handler.
You could look in the chromium source code. The chromium project also seem to have a lot of resources for developers and many communication channels (http://www.chromium.org/developers)