I'm just curious.. In my application I'm using "readonly and borderless" textboxes instead of using labels. The textboxes are based on this Style I keep in my resource file:
 <Style TargetType="{x:Type TextBox}" x:Key="LabelLeftStyle" BasedOn="{StaticResource Basic}">
        <Setter Property="Background"      Value="Transparent"/>
        <Setter Property="FontWeight"      Value="Bold"/>
        <Setter Property="IsReadOnly"      Value="True"/>
        <Setter Property="BorderThickness" Value="0"/>
        <Setter Property="Height"          Value="Auto" />
        <Setter Property="Width"           Value="Auto" />
        <Setter Property="MinWidth"        Value="155"/>
        <Setter Property="IsTabStop"       Value="False"/>
    </Style>
Just curious..is anyone else doing the same ? I found the WPF Label difficult to work with.
 
     
     
    