10

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

有人在WPF中有一个例子吗?

编辑:

有人使用 AvalonEdit,因为他想在他的程序中显示 LineNumbers 并且可以通过我的问题帮助我。

4

5 回答 5

9

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

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代码中的 注册它 - 然后添加更多的东西来补充。但这本身就是一个漫长的故事。

于 2013-04-08T11:47:53.183 回答
7

只需为您的文本框使用自定义模板;以下答案可能对您有所帮助:

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
    }
}
于 2013-04-02T06:59:20.420 回答
2

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

安装组件并将其添加到表单后,您可以通过转到控件的属性并设置 Margins>Margin0>Width来显示行号。您也可以通过编程方式进行设置:

scintilla1.Margins.Margin0.Width = 20;

如果您打算采用这条路线,您可能会发现ScintillaNet 文档很有用 - 我在开始时发现它非常有用。

于 2013-04-03T13:19:21.380 回答
1

你能找到的最好的例子是在 AvalonEdit 中。反正除了行号还有很多,但是你可以研究一下它是怎么做的,代码很清楚。查看我们正在谈论的内容的一个起点可以是这篇 CodeProject 文章

于 2013-04-02T07:05:10.960 回答
0

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

于 2015-05-19T15:13:15.203 回答