c# - align wpf tabcontrol strip -
i'm trying align tabcontrol strip on right.
just clear - want tabs on top (tabstripplacement), aligned on right.
the headers tabitem
's located in panel of type tabpanel
. can add horizontalalignment="right"
in resources of tabcontrol
<tabcontrol ...> <tabcontrol.resources> <style targettype="tabpanel"> <setter property="horizontalalignment" value="right"/> </style> </tabcontrol.resources> <!--...--> </tabcontrol>
Comments
Post a Comment