I am using Infragistics 12.2 TabGroupPane with out using XamDockManager. The pins are disabled on the TabGroupPane. I want to enable the pins on the TabGroupPane. How can I do this?
<UserControl x:Class="NavigationPanelView"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:igWPF="http://schemas.infragistics.com/xaml/wpf" <igWPF:TabGroupPane TabStripPlacement="Top" SelectedIndex="0" HorizontalContentAlignment="Stretch" > <igWPF:ContentPane ... ... </igWPF:ContentPane> <igWPF:ContentPane ... ... </igWPF:ContentPane> </igWPF:TabGroupPane></UserControl>
Thank you,
L
Hello Lala,
Thank you for your post. I have been looking into your requirement and in order to be able to use the pinning functionality of the ContentPanes, they should be added in a XamDockManager, which is controlling the pinning. Since you are using a standalone TabGroupPane, I assume that you wish to use it as a TabControl that allows pining. You can achieve that using XamDockManager by disabling the dragging of the ContentPane, which will restrict moving the ContentPanes and also by setting the AllowFloatingOnly and AllowFloaringDockable properties of the ContentPant to false, which will remove the Floating option of the ContentPane’s menu. By implementing this, the TabGroupPane will appear standalone and you will be able to use the pinning. I have created a sample application for you, that shows how you can implement this approach.
Please let me know if you need any further assistance on the matter.
Sincerely,
Krasimir
Developer Support Engineer
Infragistics
www.infragistics.com/support
I am just checking if you require any further assistance on the matter.