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

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -