gpt4 book ai didi

c# - 如何在类似标签的控件中显示简短的只读 FlowDocument

转载 作者:太空宇宙 更新时间:2023-11-03 16:56:32 26 4
gpt4 key购买 nike

我正在寻找一种在类似标签的控件中呈现短 FlowDocument 字符串的方法。

在 WPF 中,用户可以将文本输入到 RichTextBox 中。结果是一个 FlowDocument 字符串。我正在寻找一种在 Label 中显示该文本的方法,其中:

  1. 用户不应该能够编辑或选择(使用鼠标)文本。
  2. 不应有滚动条 - 就像在普通标签中一样,控件应展开以容纳所有文本。
  3. 如果鼠标在标签上时用户滚动,则应滚动的控件是该控件的父控件
  4. 控件应尽可能轻量级。

我有以下继承 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"/>

关于c# - 如何在类似标签的控件中显示简短的只读 FlowDocument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1680461/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com