是否有与TextBlock ScrollViewer.CanContentScroll="True"

本文关键字:quot True CanContentScroll TextBlock ScrollViewer 是否 | 更新日期: 2023-09-27 18:13:04

对于XAML中的TextBlock,您可以在DataTemplate中执行以下操作:

<TextBlock Text="myTextBlock Text" VerticalAlignment="Center" Margin="0,0,5,0" 
ScrollViewer.CanContentScroll="True" ScrollViewer.HorizontalScrollBarVisibility="Visible"/>

但是当我尝试设置ScrollViewer。HorizonalScrollBarVisibility,它似乎没有做任何事情。

DataTemplate textBlockTemplate = new DataTemplate();
FrameworkElementFactory textBlockElement = new FrameworkElementFactory(typeof(TextBlock));
Binding c1Binding = new Binding("myBindingValue") { Mode = BindingMode.TwoWay, UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged };
textBlockElement.SetBinding(TextBlock.TextProperty, c1Binding);
textBlockElement.SetValue(TextBlock.TextWrappingProperty, TextWrapping.Wrap);
textBlockElement.SetValue(TextBlock.HeightProperty, System.Convert.ToDouble(23));
textBlockElement.SetValue(ScrollViewer.CanContentScrollProperty, true);
textBlockElement.SetValue(ScrollViewer.HorizontalScrollBarVisibilityProperty, ScrollBarVisibility.Visible);
textBlockTemplate.VisualTree = textBlockElement;
templateColumn.CellTemplate = textBlockTemplate;
myDataGrid.Columns.Add(templateColumn);

我试图使一个DataGrid列,有一个显示一行文本的TextBlock,但允许您向上/向下滚动以查看文本块的其余部分。

是否有与TextBlock ScrollViewer.CanContentScroll="True"

TextBlock没有包含ScrollViewer来设置滚动行为。您需要将其封装在ScrollViewer中,您可以在其上设置任何您想要的内容。与此相反,ListBox在其ControlTemplate中包含ScrollViewer,因此可以利用附加的属性。