Christian Russo
Christian Russo

Reputation: 103

dragablz TabablzControl wpf disable tab switch and Drag

I am using a dragablz:TabablzControl control in WPF project and I need disable tab switch and tab drag. How can I do?

thans!

Upvotes: 3

Views: 1966

Answers (2)

fatihyildizhan
fatihyildizhan

Reputation: 8832

Add FixedHeaderCount to disable dragging

<dragablz:TabablzControl FixedHeaderCount="3">

Remove InterTabController to disable detaching

Upvotes: 2

Igor Quirino
Igor Quirino

Reputation: 1195

You can Remove the InterTabController.

Thank you!

Upvotes: 4

Related Questions