DxProgressColumn

The DxProgressColumn binds the 3 fields required to display a progress bar. Minimum and Maximim represent the boundaries for Value (which represents the binding to a field in the database and will be displayed as progress)

<tl:DxProgressColumn
    Width="110"
    Header="Fortschritt [Zeit]"
    Uid="b5d329ff-0dc0-4d49-a1c5-1ed003189623"
    Name="pbfortschritt"
    Minimum="0"
    Maximum="{Binding Path=tg_gesamt}"
    Value="{Binding Path=rueckm_zeit}"
    ToolTip="{tl:ExpressionBinding Expression='Str(Round(Dbl(@rueckm_zeit), 2)) + &quot; / &quot; + Str(@tg_gesamt)', CachingMode=NoCache}" />

Last updated