Can't edit Textblock content in WPF
Asked Answered
F

2

11

I'm working on my first WPF application and I notice that I'm not able to edit the text values in any of my textblocks.

I can't seem to find anything wrong here that would prevent me from changing it...

<Label Content="Line Terminator" Grid.Row="0" Grid.Column="0" Margin="5"></Label>
<Border BorderThickness="1" BorderBrush="LightBlue" Grid.Row="0" Grid.Column="1" Margin="5">
    <TextBlock x:Name="txtLineTerm" Focusable="True" IsManipulationEnabled="True" Padding="3"></TextBlock>
</Border>
<Label Content="Field Terminator" Grid.Row="0" Grid.Column="2" Margin="5"></Label>
<Border BorderThickness="1" BorderBrush="LightBlue" Grid.Row="0" Grid.Column="3" Margin="5">
    <TextBlock x:Name="txtFieldTerm" Focusable="True" IsManipulationEnabled="True" Padding="3"></TextBlock>
</Border>

Can anyone see the problem? I feel like there's a concept that I'm missing here. Any explanation will be greatly appreciated.

Forman answered 30/1, 2013 at 8:19 Comment(2)
see this too : #136935Shawn
Are you asking how to edit the TextBlock at runtime, or designtime? Despite the accepted answer, both are possible... (What a TextBlock cannot do is have a user click on it and edit it in-place, like a TextBox)Angloindian
S
24

TextBlock is not editable. Use TextBox instead.

Snavely answered 30/1, 2013 at 8:21 Comment(0)
T
4

you can use EditableTextBlock as shown in the link

Tracietracing answered 30/1, 2013 at 9:4 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.