我有ListView
,在最后一项的末尾,您可以点击右侧并输入TextBox
,如图所示。如何禁用此功能?
答案 0 :(得分:0)
如果您想禁止在TextBox
DataTemplate
ListView
中进行写作,那么只需设置' IsReadOnly' TextBox
到true
的属性。让我举个例子:
<TextBox IsReadOnly="True" />
或者只使用TextBlock
代替TextBox
。默认情况下,TextBlock
没有机会在此控件中写入:
<TextBlock Text="I am a TextBlock. You cannot change this text.:)"/>