do you know any text editor project with c#

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • 2003et

    do you know any text editor project with c#

    I have to include a text editor in my project. Do you know any good editor
    project on the net?

    Thanks


  • Chris Taylor

    #2
    Re: do you know any text editor project with c#

    Hi,

    The SharpDevelop project has a complete code editor and it is not to
    involved to us the editor in your own project. I am not sure what the
    licencing issues would be though.

    ICSharpCode has 20 repositories available. Follow their code on GitHub.


    Hope this helps

    Chris Taylor
    "2003et" <e108254@metu.e du.tr> wrote in message
    news:%230XAz91r DHA.1196@TK2MSF TNGP12.phx.gbl. ..[color=blue]
    > I have to include a text editor in my project. Do you know any good editor
    > project on the net?
    >
    > Thanks
    >
    >[/color]


    Comment

    • Tobes \(Breath\)

      #3
      Re: do you know any text editor project with c#

      "Chris Taylor" <chris_taylor_z a@hotmail.com> wrote in message
      news:%23757jY2r DHA.1196@TK2MSF TNGP12.phx.gbl. ..[color=blue]
      > Hi,
      >
      > The SharpDevelop project has a complete code editor and it is not to
      > involved to us the editor in your own project. I am not sure what the
      > licencing issues would be though.
      >
      > http://www.icsharpcode.net/OpenSource/SD/Default.aspx
      >
      > Hope this helps
      >
      > Chris Taylor[/color]

      I would second this! I've used the TextAreaControl from SharpDevelop in
      SqlBuddy (sqlbuddy.sourc eforge.net). The editor control compiles to a single
      DLL that can be included in your project. You can write custom syntax
      highlighting files for it, enable/disable visible spaces, folding and more.
      Also, if you browse the source for SharpDevelop you can see how to achive
      things such as error underlining, tooltips over individual words etc. It's
      all funky stuff! As Chris says, licensing may be an issue.

      Tobin Harris


      Comment

      • Eric Engler

        #4
        Re: do you know any text editor project with c#

        >I have to include a text editor in my project. Do you know any good editor[color=blue]
        >project on the net?[/color]

        Download SharpEdit for free. SharpEdit is a text editor written in C#. It has a tabbed interface, and should be thought of as a middle ground between Visual Studio/SharpDevelop and Notepad.

        Comment

        Working...