반응형
Label에 Content에 언더바 즉 _ 를 넣으면 해당 문자가 나오지 않는다.
이것을 방지하기 위해서는 RecognizesAccessKey 를 False로 하면된다.
또는 Label내의 Content에 Textblock을 넣어 문자를 적으면된다.
<StackPanel>
<Label Foreground="Black"
HorizontalAlignment="Center"
Content="테스트_Label 1"/>
<Label Foreground="Black"
HorizontalAlignment="Center">
<TextBlock Text="테스트_Label 2"/>
</Label>
<Label Foreground="Black"
HorizontalAlignment="Center"
Content="테스트_Label 3">
<Label.Template>
<ControlTemplate TargetType="Label">
<ContentPresenter RecognizesAccessKey="False"/>
</ControlTemplate>
</Label.Template>
</Label>
</StackPanel>
반응형
'프로그래밍 > WPF' 카테고리의 다른 글
[WPF] ListView & ItemsControl 홀수/짝수 번째 배경색 변경하기 (1) | 2022.09.20 |
---|---|
[WPF] ListView ListViewItme 사이의 Margin Padding 제거 (0) | 2022.09.16 |
[WPF] Image Resource 등록 및 사용 (0) | 2022.09.16 |
[WPF] 외부 Font 적용하기 - Roboto (0) | 2022.09.08 |
[WPF] String Color to Brush (0) | 2022.09.08 |