We have an application that uses nested tabbed contents, which is taking up too much real-estate. Is there a way to make the border around a tabbed docked window smaller?
Hello,
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
Thank you. I can't verify at the moment, but will verify and post back w/in a few days. Crazy here at the moment.
I am just checking the progress of this issue and was wondering if you managed to achieve your goal or if you need any further assistance on the matter.
Thank you for your post. I have been looking into it and I can suggest you add the following Style for the TabGroupPane:
<Style TargetType="{x:Type igDock:TabGroupPane}"> <EventSetter Event="Loaded" Handler="TGPloaded"/> </Style>
And this event handler in the code behind:
private void TGPloaded(object sender, RoutedEventArgs e) { (Utilities.GetDescendantFromName(sender as DependencyObject, "ThickInnerBorder") as Border).BorderThickness = new Thickness(0); //this one here is the inner Border var ad = Utilities.GetDescendantFromType(sender as DependencyObject, typeof(AdornerDecorator), true); ((ad as AdornerDecorator).Child as Border).BorderThickness = new Thickness(0); }
Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.