In the “Active Files” menu of the TabGroupPane, how can I remove the Close “X” button in those menu items?
There is no X in those menu items. I have to assume that you have the TabHeaderTemplate set to a data template that contains a close button in which case you may want to review this thread.
Thank you for your response. Can you tell me where to insert the Trigger? Here is my xaml code:<igDock:XamDockManager ActivePaneChanged="dockMgr_ActivePaneChanged" TabItemDragBehavior="DisplayInsertionBar" > <igDock:DocumentContentHost> <igExtensions:ContentPaneFactory.PaneFactory> <v:ContentPaneFactory ItemsSource="{Binding ModuleInstances}" RemoveItemOnClose="True" OurMainViewContainerViewModel="{Binding}" HeaderPath="ModuleInstance.InstanceDescription" ContentPath="." /> </igExtensions:ContentPaneFactory.PaneFactory> </igDock:DocumentContentHost></igDock:XamDockManager>
Thank you!