单选按钮xaml中的换行符

gblwokeq  于 2023-06-03  发布在  其他
关注(0)|答案(1)|浏览(281)

我在C#中遇到了一个单选按钮内容的问题。因为内容太长了,我需要一个换行符。
我试着用“&#xa”来做LineBrek,但它不起作用...这是我的xaml:

<RadioButton x:Name="RbMitarbeiterNicht" Grid.ColumnSpan="2"
             HorizontalAlignment="Left" Height="20" Margin="863,929,0,0"
             VerticalAlignment="Top"
             GroupName="rb_stoerung"
             Content="Mitarbeiter nicht anwesend"
             FontSize="16" Width="102" Foreground="#000000"
             Background="#FFFFFF" Checked="RbMitarbeiterNicht_Checked"/>
scyqe7ek

scyqe7ek1#

也许你使用了&#xa而不是&#x0a;&#x0a;是换行符。
如果不是这样,并且问题中有错别字,那么我建议使用TextBlock作为内容。

<RadioButton x:Name="RbMitarbeiterNicht" Grid.ColumnSpan="2"
         HorizontalAlignment="Left" Height="20" Margin="863,929,0,0"
         VerticalAlignment="Top"
         GroupName="rb_stoerung"
         FontSize="16" Width="102" Foreground="#000000"
         Background="#FFFFFF" Checked="RbMitarbeiterNicht_Checked">
    <RadioButton.Content>
        <TextBlock Text="Line 1 &#x0a;Line 2">
    </RadioButton.Content>
</RadioButton >

相关问题