Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
920
using TabGroupPane
posted

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

Parents
No Data
Reply
  • 30945
    Offline posted

    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

    TabGroupPaneStandAlone.zip
Children