C#/WPF
[WPF] Text 마우스 선택시 파란영역
딸기우유중독
2023. 7. 7. 15:50
TextBlock 대신
<TextBox Background="Transparent"
BorderThickness="0"
Text="{Binding Text, Mode=OneWay}"
IsReadOnly="True"
TextWrapping="Wrap" />
https://stackoverflow.com/questions/136435/any-way-to-make-a-wpf-textblock-selectable
Any way to make a WPF textblock selectable?
How to allow TextBlock's text to be selectable? I tried to get it to work by displaying the text using a read-only TextBox styled to look like a textblock but this will not work in my case because a
stackoverflow.com
728x90