Vertical Tabcontrol Custom Component?

Dec 4, 2011

I need a vertical tabcontrol similar to the one in the above image.Is there one already made (free or paid)?

I tried google but didn't find anything.

View 1 Replies


ADVERTISEMENT

[2008] MDI TabControl Container - TabGroups (Vertical / Horizontal)?

Jan 6, 2009

I'm trying to make an MDI TabControl Container usercontrol, which is used instead of the MdiClient control in an MDI application. Instead of MDI Forms, you can use (modified) TabControls that behave like (maximized) MDI Forms in a Tabbed environment.

A great example is of course the Visual Studio IDE. Each window is just a TabPage on a TabControl (at least it looks like it is, I don't know exactly how it works in the IDE.. but let's assume it is).Now, the VS IDE uses some great functionality which I believe is called TabGroups. By Right-clicking (or dragging it into nothingness) a TabPage 'header', you can choose New Horizontal / Vertical Tab Group, which splits the 'container' into two TabControls, each with their own TabPages, with a splitter in between so you can resize them.

I have been trying to recreate this behaviour, and I must say it works pretty well so far for very little effort. The only (major) downside is, it only works for Vertical OR Horizontal TabGroups. I have no idea how I can possibly make it work using both vertical and horizontal TabGroups simultaneously...

What I did is pretty simple: I have a mdiTabControlContainer which is just a blank UserControl. I made a public property TabControls that returns a (custom) mdiTabControlCollection (inheriting from a generic Collection(Of mdiTabControl) which is basically just a collection of my tabcontrols.

When the collection is modified, I call a RedrawTabControls method which first clears the Controls (deletes all TabControls), and then adds them one by one. First the last in the collection (docked Fill) then the rest docked Left. I also add a splitter between each TabControl. (Code at the bottom)If I dock the TabControls to "Top" for example, I can make it Horizontal. But I have no idea how I can possibly dock a few of them to Left and the other few to Top...? I would need some kind of property that determines which TabControl should be docked where, right? But how and when would I set that property?

The code I'm using now is:

vb.net
Imports System.Collections.ObjectModel
Public Class mdiTabControlContainer
Public Sub New()

[code]....

View 1 Replies

Silverlight Project With Tabcontrol Hosting Canvas Objects : Can't Get Vertical Bar To Hide Even When Lots Of Room

Aug 11, 2011

Silverlight project with tabcontrol hosting canvas objects. I want to wrap my entire tabcontrol with a scrollviewer so that on a short display you can scroll vertically to see the whole area on my canvas.When I run my project my scrollviewer vertical bar is always showing even when there's more room vertically than needed for a scrollbar.

All I am trying to accomplish here is a min resolution of 1280x768 to be scrollable and anything bigger than that have the scrollbars hide. My laptop is only 768 tall, but my canvases were developed with 1280x1024 in mind. So I would like a way to set this up so that everyone can scroll or just see the canvas all at once depending on their resolution.

Anyone have any ideas why it is always visible? I've tried setting canvas width and height. I tried setting stretch on alignments on the outer grid. Saw both those tips while searching other issues similar to mine.

Some code:

<Grid x:Name="LayoutRoot" MinHeight="768" MaxHeight="1024" MinWidth="1024" MaxWidth="1280" Background="#FF6A6868" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.775*"/>

[code]....

....lots of child canvas items in my "Main Floor" canvas. Child canvas objects contain lots of path objects. None which are taller or wider than the main floor canvas width/height.

<sdk:TabItem Margin="0" Header="Mezzanine">
<Canvas x:Name="Upstairs" HorizontalAlignment="Left" Height="1000" UseLayoutRounding="False" VerticalAlignment="Top" Width="1280">

..another tab. Same deal with child canvas objects.

View 1 Replies

Add Custom Styles To A Tabcontrol?

Dec 6, 2011

Is there anyway to add custom styles to a tabcontrol? Like the tabs themselves I want to have a different background to the normal one. Just so I can style it to look nice

View 1 Replies

Custom Tabcontrol Using A Trackbar

Jan 21, 2011

I'm using Microsoft Visual Basic 2010 Express and I've been trying to make an application, a word processor, which has it's own custom tabs, I'm not making a new control, instead using a trackbar and adding richtextboxes to a panel for add tab and removing them for remove tab. and when the user changes the value of the trackbar, the richtextboxes too get changed by using the bringtofront property of the richtextbox with the index that is the same as the trackbar value. basically, as you drag the trackbar, the rtbs should get changed here is the code: the following is for a timer that keeps updating the number of rtbs, etc. [Code]

View 1 Replies

Make A 'custom' Tabcontrol

Oct 19, 2011

I tried to make a 'custom' tabcontrol such that when I click Button1, panel1 is shown, and when I click Button2, panel2 is shown.But if I have a lot of panels then it'll be very messy when creating the gui at design time.(There'll be many panels overlapping each other.

View 1 Replies

Make A Custom TabControl?

Dec 22, 2009

I Want To Make A Custom TabControl Like The One In VS2005 OR VS2008[code]...

View 3 Replies

Custom Bordered Groupbox On Tabcontrol?

Apr 10, 2010

I have a custom bordered groupbox with a different bordercolor as the default. I found the code on the net. It works, but when I drag the groupbox on a tabcontrol, the border goes through the text. Why? How can I fix it? Here the code:

Public Class mygroupbox
Inherits GroupBox
Private BorderColor As Integer = 9922355
Public Sub New()

[code]....

View 2 Replies

VS 2008 - How To Add Custom TabControl To Project

Aug 5, 2010

I'm just not able to add a custom TabControl to my project. I have found a custom tabControl here: [URL]. The CustomTab consists out of 4 .vb files. Normally I would add a component (.dll or exe) to my project. I tried adding the 4 .vb files but unfortunately no CustomTabControl.

View 3 Replies

Custom TabControl - Move The Tabrect Areas?

Jul 23, 2010

Wondering if its possible to move the tabrect areas? For example:

[Code]....

I can already paint the tabs to the new location, but not sure if I have to override onmousedown or onmouseclick or what to have the tab selection area match up with the new painting. I haven't found any example of what I am wanting to do.

View 14 Replies

Adding Custom Component In Tooolbox?

Feb 13, 2011

How to add a custom component to my toolbox.I have a class that inherits Panel. I want to add this to my toolbox.I followed these steps:

Right Click on Toolbox (On general tab )Choose Items In the .NET Components Tab, I can't find my Class.Where am I wrong ?

View 1 Replies

Custom Component Icon And Description?

Sep 4, 2011

I have made a custom component (button based) and was wondering how to add a custom icon to it as well as a custom description I've seen 3rd party components that got special icons as well as a custom description

And actually got a second question How to add description to functions I create myself? You know... in code when you start typing and a function shows up, if you let the mouse over it,

View 1 Replies

Extending Or Creating A Custom Vb Component?

Jan 11, 2010

I am wondering if I can extend a component (e.g a button ) in vb the same way I can in java which enables you to modify the component for your specific requirement or create a new one from scratch.

View 3 Replies

Custom Menu For WMP Component (Fullscreen Mode)

Feb 27, 2011

Is it possible to create a menu when wmp comp is in fullscreen mode. I mean when wmp goes fullscreen a toolbar or something appear, showing play pause etc! Generally all the controls of a player...

View 3 Replies

VS 2008 Developing A Custom Component (single Signed Dll File)

Nov 26, 2011

Im currently developing a custom logging component, that we will deploy with all our applications, windows services, webapps, windows apps etc. I have a few questions of various nature. The component is a single signed dll file:

1) Which is the "safest" way to get the current directory? For example, in the config file, in the config section I have a property "logpath". The application will read this and write a log file depending in what they write:

c:myapplog (it will write a log here, create whatever folders it need) /Log (directly under the installed app directory, like c:program filesmyappLog) Log (same as above) I need something that work with both windows and web apps, for webapps it will log under the virtual directory of the aspnet app.

2) For exception handling, if nothing special is happening, like in the DAL, I get a sql server exception, is there any point in using

[Code]...

View 10 Replies

Create A Custom TabControl That Does Not Add 2 Default "TabPages" In DESIGN MODE?

Jul 20, 2011

When you INHERIT from TabControl to create a different version of the TabControl, then BUILD the designer will add 2 TabPagesby default when you add your new TabControl from the ToolBox to a Form.

View 1 Replies

Clean Elegant Solution To Form-class Level Component Collection Initializing Before Initialize Component?

Feb 3, 2011

I am converting an old Vb6 solution to .net 2.0 in vs2010. I've been working in C# for about 3 years now and .net for 5. I don't recall having this problem in C#, but if I want initialize a readonly collection of DerivedControlFoo Is there a clean way to do it besides creating a sub to do it all off somewhere else? I'd love to be able to do it at the class level at the declaration for readability and simplicity.

View 1 Replies

Create A DLL Component For Database Operation And Use Created Component In Another Project

Mar 1, 2010

Create a DLL component for database operation and use created component in another project. Required methods, events and properties

a. Connect
b. Add
c. Delete
d. Save
e. Record navigation (first, next, previous, last)
f. Properties for all database fields
g. Events for validation of database fields.

View 1 Replies

C# - Change A Component Name In A Component Designer In WinForms .Net

Jan 8, 2010

I've created a component whose name I'd like to be able to change while editing in the component tray. I've added a Designer action for a name property, but now I'm stuck.

Looking at the property grid, I can see that the name property is parenthesised, indicating that it's not a regular property.

View 1 Replies

Add A Vertical Label On From?

Sep 11, 2006

I would like to add a vertical label on my from

View 11 Replies

Getting The Vertical Scroll Bar?

Apr 17, 2010

i need to add some extra text boxes for that i need a vertical scroll bar for that?

View 2 Replies

Add A Vertical Scrollar To Application?

Apr 16, 2011

I wanna add a Vertical Scrollar to my Application, but can't figure out how to do it.

Here is a picture:


So i add the Vertical ScrollBar to the Form into a TabControl but don't know how to make it function?

View 2 Replies

Add Vertical Separator In MenuStrip?

Jun 21, 2010

I am developing a window based application. I want to show my menu to be separated by a vertical separator. Just like this:

View 6 Replies

Array To Excel Vertical

Sep 17, 2010

I'm attempting to export 8am to 10pm times from cell A2 to A16 in an excel document created in code. I can get the Array to print from A1 to O1, but I want them to print from A2 to A16 is there a way to change this easily or will I have to do it manually? The code below demonstrates A1 to O1 displaying the times. [code] I used an array of Date to begin with and the output was always a decimal number representing the time of day I assume.

View 7 Replies

Datagridview Vertical Display?

Feb 13, 2009

is there a way to display my dgv vertically?for example, this is how it displays now:Field1 | Field2 | Field3 | Field4 | Field5i want it to be displayed as:

Field1
Field2
Field3

[code].....

View 3 Replies

Get Vertical Scrollbar For Form1?

Apr 25, 2010

My problem is that I built this program for my VB class, but I built it on my desktop at home which is a 23" monitor. When this is opened on a smaller screen, you dont get to see all of the project. I want to add a vertical scroll bar but that is beyond what I have been taught and beyond what my book teaches...

how to get a vertical scroll bar to scroll the whole form?

View 1 Replies

Get Vertical ScrollBar Postion?

May 25, 2009

I have a TOS agreement that i would like my user to have to view ...

basically the same way "World Of Warcraft" does it ...

You must scroll to the bottom for the accept button to be enabled and clickable...

but in vb.net i cant seem to find a way to determine the vertical scrollbar postition .

View 5 Replies

How Create Label Vertical

Mar 18, 2011

How create Label vertical in vb.net?

View 4 Replies

How To Make Vertical Tabs

Sep 14, 2009

I spent a lot of time googling and I can't find anything Does anyone know how to make tabs on a TabControl vertical? Like this:

View 7 Replies

How To Rotate A Label It In To Vertical

Jan 17, 2009

Anyone have on how to rotate a label it in to vertical?

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved