-
Hello guys, im pretty new to wpf development and development in general, im tackling my first application and i decided to use HandyControl because of its simplicity (tried some others and it was hell). I incurred into a problem with the tab control and was wondering if its normal, what happens is that after i set a style to the tabcontrol element for example |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi, note that there are 2 types of tabcontrol
The important thing is that the styles only work in the <TabControl and Not <hc:TabControl Please read the documentation https://ghost1372.github.io/handycontrol/native_controls/tabControl/ https://ghost1372.github.io/handycontrol/extend_controls/tabControl/ |
Beta Was this translation helpful? Give feedback.
Hi, note that there are 2 types of tabcontrol
example:
<TabControl Style="{StaticResource TabControlCapsule}"/>
example:
<hc:TabControl IsScrollable="True"/>
The important thing is that the styles only work in the <TabControl and Not <hc:TabControl
Also, properties like IsScrollable only work in <hc:TabControl
Please read the documentation
https://ghost1372.github.io/handycontrol/native_controls/tabControl/
https://ghost1372.github.io/handycontrol/extend_controls/tabControl/