我有一个“ DataItem”的ObservableCollection,其中包含一个TextBlock。这个想法是通过ContentControl将ObservableCollection绑定到ListView。我希望能够以编程方式操作TextBlocks,并将这些更改反映在演示文稿中,这似乎是最有效的方法。
我用一些DataItem对象填充了ObservableCollection并将文本数据添加到每个TextBlock。然后,我尝试以编程方式在TextBlock中选择一段文本。
public class DataItem: INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged([CallerMemberName] string propertyName = "") => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
private readonly TextBlock tb;
public TextBlock TB
{
get { return tb; }
}
public DataItem()
{
tb = new TextBlock
{
TextWrapping = Windows.UI.Xaml.TextWrapping.Wrap,
IsTextSelectionEnabled = true,
SelectionHighlightColor = new Windows.UI.Xaml.Media.SolidColorBrush(Colors.Orange)
};
}
}
private ObservableCollection<DataItem> DataItems { get; set; } = new ObservableCollection<DataItem>();
//然后在OnNavigatedTo()中...
for (int i = 0; i < 5; i++)
{
DataItem dataItem = new DataItem();
dataItem.TB.Text = string.Format("This is sentence Number {0}", i);
DataItems.Add(dataItem);
}
MyListView.ItemsSource = DataItems;
//这是XAML部分...
<ListView x:Name="MyListView">
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<ItemsWrapGrid MaximumRowsOrColumns="7" Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ListView.ItemsPanel>
<ListView.ItemTemplate>
<DataTemplate x:DataType="local:DataItem">
<ContentControl Content="{Binding TB, Mode=OneWay}"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
//最后,这是尝试选择的代码:
TextPointer pos = DataItems[2].TB.ContentStart;
TextPointer beg = pos.GetPositionAtOffset(4, LogicalDirection.Forward);
TextPointer end = pos.GetPositionAtOffset(8, LogicalDirection.Backward);
try
{
DataItems[2].TB.Select(beg, end);
}
catch(Exception exc)
{
string s = exc.Message.ToString();
}
调试器甚至没有将其放入Catch块。操作系统显示:System.AccessViolationException:'试图读取或写入受保护的内存。这通常表明其他内存已损坏。'
通过这种方法无法在TextBlock中选择一段文本吗?您还会提出什么其他策略?