从WPF的RichTextBox中显示linenumber

本文关键字:显示 linenumber RichTextBox WPF | 更新日期: 2023-09-27 18:05:34

我找到了一个例子,如何在Windows窗体中显示来自RichTextBox的linenumber。http://www.codeproject.com/Articles/38858/Line-Numbers-for-RichText-Control-in-C

有人在WPF的例子吗?

编辑:

是否有人与AvalonEdit工作,因为他想在他的程序中显示LineNumbers,可以帮助我解决我的问题。

从WPF的RichTextBox中显示linenumber

我想只是添加一个简单的解决方案…

Avalon(下载)已经提到,这里是如何使用它的行:

<avalon:TextEditor ShowLineNumbers="True" Width="500" Height="500"
                    Text="some more test&#10; some more test&#10; some more test&#10; some more test&#10; some more test&#10; some more test&#10; some more test&#10; some more test&#10; some more test&#10; ">
</avalon:TextEditor>  

它是一个非常强大的编辑器——我已经用它做了很多工作(自定义语言编译器等)。它是免费的,所以它有它的"怪癖",但它允许你做几乎任何你需要的事情。我不确定你说的是哪种格式的文本-但你需要的任何东西都可以做,在不太多的代码行,如果你知道如何,在哪里注入(你可以添加自己的生成器,变压器,几乎任何视觉效果,代码完成等-我没有既得利益在它:)

编辑

语法高亮显示的小示例:

<avalon:TextEditor 
  ShowLineNumbers="True" 
  SyntaxHighlighting="C#" Width="500" Height="500"
  Text="void Test(int id, string name)&#10;{&#10;&#09;name = name + id.ToString();}" />  

支持的是"XmlDoc", "C#", "JavaScript", "HTML", "ASP/XHTML", "Boo", "Coco", "CSS", "C+", "Java", "Patch", "PHP", "TeX", "VBNET", "XML",据我所知,从代码。

如果您想实现自己的自定义syntax highlighting (Avalon编辑器是高度可扩展的-有关详细信息,请参阅所提到的代码项目文章)…

您需要定义自己的IHighlightingDefinition,然后将其注册为代码中的HighlightingManager -然后添加一些更多的东西来补充。但这是一个很长的故事。

为你的TextBox使用一个自定义模板;下面的答案可能对你有所帮助:

TextBlock的可见行数


更改答案以获得OP期望的工作

<Style x:Key="Local_TextBox" TargetType="{x:Type TextBoxBase}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type TextBoxBase}">
                <Border Name="Border" Background="{TemplateBinding Background}">
                    <ScrollViewer x:Name="PART_ContentHost" />
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

设计师,

<DockPanel>
    <TextBlock Text="{Binding ElementName=uiTextBox, Path=(local:AttachedProperties.BindableLineCount)}"/>
    <TextBox x:Name="uiTextBox" TextWrapping="Wrap" local:AttachedProperties.HasBindableLineCount="True"
            AcceptsReturn="True" Text="{Binding LongText}" Style="{StaticResource Local_TextBox}" />
</DockPanel>

附加属性,

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
namespace Cmsn.Software.Tutorials.numberedTextBox
{
    public class AttachedProperties
    {
        #region BindableLineCount AttachedProperty
        public static string GetBindableLineCount(DependencyObject obj)
        {
            return (string)obj.GetValue(BindableLineCountProperty);
        }
        public static void SetBindableLineCount(DependencyObject obj, string value)
        {
            obj.SetValue(BindableLineCountProperty, value);
        }
        // Using a DependencyProperty as the backing store for BindableLineCount.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty BindableLineCountProperty =
            DependencyProperty.RegisterAttached(
            "BindableLineCount",
            typeof(string),
            typeof(AttachedProperties),
            new UIPropertyMetadata("1"));
        #endregion // BindableLineCount AttachedProperty
        #region HasBindableLineCount AttachedProperty
        public static bool GetHasBindableLineCount(DependencyObject obj)
        {
            return (bool)obj.GetValue(HasBindableLineCountProperty);
        }
        public static void SetHasBindableLineCount(DependencyObject obj, bool value)
        {
            obj.SetValue(HasBindableLineCountProperty, value);
        }
        // Using a DependencyProperty as the backing store for HasBindableLineCount.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty HasBindableLineCountProperty =
            DependencyProperty.RegisterAttached(
            "HasBindableLineCount",
            typeof(bool),
            typeof(AttachedProperties),
            new UIPropertyMetadata(
                false,
                new PropertyChangedCallback(OnHasBindableLineCountChanged)));
        private static void OnHasBindableLineCountChanged(DependencyObject o, DependencyPropertyChangedEventArgs e)
        {
            var textBox = (TextBox)o;
            if ((e.NewValue as bool?) == true)
            {
                textBox.SizeChanged += new SizeChangedEventHandler(box_SizeChanged);
                textBox.SetValue(BindableLineCountProperty, textBox.LineCount.ToString());
            }
            else
            {
                textBox.SizeChanged -= new SizeChangedEventHandler(box_SizeChanged);
            }
        }
        static void box_SizeChanged(object sender, SizeChangedEventArgs e)
        {
            var textBox = (TextBox)sender;
            string x = string.Empty;
            for (int i = 0; i < textBox.LineCount; i++)
            {
                x += i + 1 + "'n";
            }
            textBox.SetValue(BindableLineCountProperty, x);
        }
        #endregion // HasBindableLineCount AttachedProperty
    }
}

ScintillaNET是一个值得尝试的好组件。它是。net版本的Scintilla,它是notepad++编辑器(以及其他)中的关键组件。我不知道它与AvalonEdit相比如何,但我发现它很容易在我的代码中实现,它具有您需要的功能(以及更多)。

一旦您安装了组件并将其添加到表单中,您就可以通过转到控件的属性并设置margin> margin>Width来显示行号。您也可以通过编程方式设置:

scintilla1.Margins.Margin0.Width = 20;

如果你打算走这条路,你可能会发现ScintillaNet文档很有用——当我开始的时候,我发现它真的很有帮助。

你能找到的最好的例子是AvalonEdit。反正除了行编号还有很多,但是你可以研究它是如何完成的,代码非常清晰。您可以从这篇CodeProject文章开始了解我们正在讨论的内容。

这是一篇很好的CodeProject文章,它展示了在TextBox控件中实现行号和其他一些很好的代码编辑特性的详细方法。如果您不关心它是如何构建的,只需下载示例文件并使用包含编译后控件的附带dll。