我正在寻找一种在类似标签的控件中呈现短 FlowDocument
字符串的方法。
在 WPF 中,用户可以将文本输入到 RichTextBox
中。结果是一个 FlowDocument
字符串。我正在寻找一种在 Label
中显示该文本的方法,其中:
- 用户不应该能够编辑或选择(使用鼠标)文本。
- 不应有滚动条 - 就像在普通标签中一样,控件应展开以容纳所有文本。
- 如果鼠标在标签上时用户滚动,则应滚动的控件是该控件的父控件
- 控件应尽可能轻量级。
我有以下继承 FlowDocumentScrollViewer
的实现,但我确信必须有更好的实现(可能继承除 FlowDocumentScrollViewer
之外的其他控件)。
public class FlowDocumentViewer : FlowDocumentScrollViewer
{
public FlowDocumentViewer()
{
this.SetValue(ScrollViewer.CanContentScrollProperty, false);
this.SetValue(ScrollViewer.VerticalScrollBarVisibilityProperty, ScrollBarVisibility.Hidden);
this.Padding = new Thickness(-17);
this.Document = new FlowDocument();
}
protected override void OnMouseWheel(MouseWheelEventArgs e)
{
e.Handled = false;
}
public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, value); }
}
public static readonly DependencyProperty TextProperty =
DependencyProperty.Register("Text", typeof(string), typeof(FlowDocumentViewer), new UIPropertyMetadata(string.Empty, TextChangedHandler));
private static void TextChangedHandler(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
if (e.NewValue.Equals(string.Empty))
return;
FlowDocumentViewer fdv = (FlowDocumentViewer)d;
fdv.Document.Blocks.Clear();
using (MemoryStream stream = new MemoryStream(UTF8Encoding.UTF8.GetBytes(e.NewValue.ToString())))
{
Section content = XamlReader.Load(stream) as Section;
fdv.Document.Blocks.Add(content);
}
}
}
您是否尝试过设置 IsReadOnly?
<RichTextBox IsReadOnly="True"/>
我是一名优秀的程序员,十分优秀!