ScintillaNET is a powerful text editing control for Windows Forms applications and a managed wrapper around the versatile Scintilla Windows control. Created with the developer in mind, the ScintllaNET API makes it simple to add advanced text editing and syntax highlighting to your application or IDE (Integrated Developer Environment). In addition ScintillaNET adds features not found in other Scintilla wrappers such as Visual Studio style code snippets, integrated find and replace dialogs, true regular expression searches, multiple key-command bindings, and back/forward document navigation.
The ScintillaNET project is hosted on CodePlex at the following URL: http://scintillanet.codeplex.com/. The most up-to-the-minute source code, binaries, and documentation can be found at that location.
The following guide is provided for users who wish to use the ScintillaNET control in their projects.
The ScintillaNET team regularly publishes new releases as features are added and bugs are fixed. These releases can easily be obtained from the ScintillaNET Downloads page on CodePlex. Files are distributed in both binary and source versions and then zip compressed.
Failing to configure the search path or doing it incorrectly trips-up many users. ScintillaNET is a wrapper around an umanaged DLL and uses Platform Invoke (P-Invoke) calls from the managed ScintillaNet.dll to the native SciLexer.dll to perform its magic. In order for that to work the SciLexer.dll must be in one of the places Windows uses to locate DLLs. More information about the Search Path Used by Windows to Locate a DLL can be found on the MSDN website. Of the many ways that Windows can use to find the SciLexer.dll, the instructions below illustrate how to modify your PATH environmental variable.
Adding the ScintillaNET control to the Visual Studio (or Visual C# Express Edition) toolbox makes adding it to one of your forms as easy as dragging and dropping.
2/16/2012
Jacob Slusser
Added support for 64-bit platforms.
Issue # | Title |
---|---|
17074 | 32/64 bit |
25013 | Upgrade SciLexer to latest (2.01) |
25825 | Windows 64 support |
10/21/2009
Chris Rickard
Primarily this is a bugfix release. Only a couple new features are included and they are there because they fix/workaround an existing issue.
8/4/2008
Chris Rickard
For ScintillaNET core this is primarily a maintenance release. It is based off of changeset 34880 and includes a few bug fixes from the 2.0 release.
The big change with this release is that I've now included a setup file which should help new developers get started more easily. It copies the SciLexer.dll to the system directory and creates the registry entries to list Scintilla in the list of available components for the VS Toolbox.
I'm not including the source in this release, please take the latest from the Source Code tab.
Download and run the MSI to have the installer set up your development environment.
NOTE if you already have SciLexer.dll in your system directory
it will be overwritten with version 1.7.6, which is the latest Scintilla at the
time of this release.
OR
Download the ZIP file if you want to do a manual installation, read the included
readme.txt for instructions on how to set up your development environment.
2/16/2008
Chris Rickard
This is the first release of ScintillaNET based off the 2.0 branch. The entire API has been re-written and is not compatible with 1x versions. All built in features of Scintilla are completely implemented with both a Scintilla like API (INativeScintilla) and an abstracted API that hides much of the flat API nature of Scintilla (Scintilla control). Many common things that were difficult to do with ScintillaNET 1x are now made easier with the new API. Also many new features that are not inherent with by Scintilla have been added. These include Print Preview, Find and Replace dialogs (with full regular expression support!), GoTo line dialog, document navigation, drop markers (like CodeRush), (Visual Studio-like) Code Snippets.
The majority of Scintilla's properties can be designed using the Windows Forms designer property grid. This is probably the easiest way to get started with many of the features, as you get immediate feedback of changes.
Lastly a brand new configuration system has been created. It uses a multiple layered configuration approach that is both very powerful and very easy to get started with.
Documentation is still non-existent. I promise it will start trickling in. For now the best way to learn is to open up the SCide example project and see what it does.
Read the readme.txt included in both downloads for instructions on how to get started in setting up your development environment.
3/11/2007
This release uses the DockPanel suite to implement a MDI interface. It also supports the SciTE configuration file format, allowing syntax highlighting/folding support for most code formats.
There are still quite a few items in progress, but I thought it was a good time to give everyone a sample of what we've been working on.
1/30/2007
The v6-a1 was the first public CodePlex release and I feel we are way past due for another :D
Beta 1 mainly features a full basic Scintilla implementation and a good basic event system.
Higher level features included in this release are Smart Indenting and built in Find and Replace Controls/Dialogs for your enjoyment. See Release notes for full details.
Sorry but no help yet. *Maybe* by b2 I'll have gone through and added all the XML comments then use an SCDoc project to generate the reference chm.