06-28-2012 05:04 AM - edited 06-28-2012 05:05 AM
Hi,
How to customize the Tab control in such a way that,the place where we are writing the tab name should be in one colour and body of the Tab control in another colour.See the picture.That is the colour below the black line should be one colour and above should be another colour.Is that possible??
Solved! Go to Solution.
06-28-2012 05:42 AM
Hi,
Only way I can think of, is to use two tab controls. First one with tabs visible and second on top of first one with tabs hidden. Problem of cource is to make sure that one control dosen't change without changing the other.
06-28-2012 06:19 AM
Hi,
I don't think that this is the right solution because on clicking the panel1 it have to display the first panel and so on....
06-28-2012 06:24 AM
That will not be a problem you just create a dummy tab control which has the tabs visible and the actual tab control with Tabs hidden and wire the value of the dummy to the actual tab control so whenever you change one tab correspondingly the other will change.
06-28-2012 06:33 AM
You could also simply use a raised box (decorations) placed at every tab:
Christian
06-28-2012 07:10 AM
Hide the Tabs - under Visible Items.
Create an Enum / Ring control with the Tab Names then wire the Enum to the Tab Node. Changing the Enum changes the visible tab.
06-28-2012 07:17 AM
Here is an easier solution.
Create a constant from the Tab Control Node. Change the Constant to a control.
Of course Hide the Tabs
06-28-2012 07:32 AM
Hi,
Thanks for the suggestions