looks like the image didn't work, here's the link
A:
You should edit this into your question
Pondidum
2009-04-23 14:50:13
+3
A:
You could just re-style the WPF TabControl to look like that. It's not very hard, just setting the Background with a nice LinearGradientBrush could get you very close to that.
Here's a (crappy colors) example:
<ToolBar>
<ToolBar.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Color="White" Offset=".1" />
<GradientStop Color="LightBlue" Offset=".3" />
<GradientStop Color="LightSteelBlue" Offset=".8" />
</LinearGradientBrush>
</ToolBar.Background>
</ToolBar>
Even better if you put it in a style.
gcores
2009-04-24 12:09:19