Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
200
XamDataPresenter header label align to right
posted

Somebody knows how to align the header label to right on XamDataPresenter?

I try this but doesn't work

......

<Style TargetType="{x:Type igDP:LabelPresenter}" x:Key="TopAlignField">
       <Setter Property="HorizontalContentAlignment" Value="Right"/>
 </Style>

.........

<igDP:Field Name="CantidadCompra" Label="Cantidad Compra">
        <igDP:Field.Settings>
               <igDP:FieldSettings LabelPresenterStyle="{StaticResource TopAlignField}" EditorType="{x:Type igEditors:XamNumericEditor}" EditAsType="{x:Type sys:Double}"/>
        </igDP:Field.Settings>
</igDP:Field>