EasyScintilla 1.0.4
A simple drop in control for ScintillaNET. Drop a SimpleEditor control onto a form, and select your style.
See the version list below for details.
Install-Package EasyScintilla -Version 1.0.4
dotnet add package EasyScintilla --version 1.0.4
<PackageReference Include="EasyScintilla" Version="1.0.4" />
paket add EasyScintilla --version 1.0.4
EasyScintilla
A (hopefully) easier way to use ScintillaNET in Windows Forms
Installation
The easiest way to install is to use NuGet!
> Install-Package EasyScintilla
Usage
The goal was to make Scintilla as easy as possible to drop into a Windows Forms project.
From the forms designer, simply drag the SimpleEditor
control from the toolbox onto the form.
Then, in the code behind set the Styler
property.
this.simpleEditor1.Styler = new CSharpStyler();
That's it!
Common Issues
Some users have been having issues where the SimpleEditor
control does not get added to the Designer Toolbox.
To fix that, follow these steps:
- If you've not done so already, install EasyScintilla
- Open up the Windows Forms Designer
- Right click on the empty space in the Toolbox, and click "Choose Items"
- Once it has finished loading, click Browse.
- Navigate to your project directory, and look for the folder called "packages". This is where Visual Studio saves your NuGet packages after you install them.
- Navigate to
[solution_root]\packages\jacobslusser.ScintillaNET.3.6.3\lib\net40
and choose the fileScintillaNET.dll
and click OK. - Navigate to
[solution_root]\packages\EasyScintilla.1.0.3\lib\net40
and chooseEasyScintilla.dll
and click OK. - Click OK.
- You should now see both the
Scintilla
andSimpleEditor
controls appear in the Toolbox.Scintilla
is the base editor from Scintilla.NET andSimpleEditor
is from this project.
Stylers
I've built a few stylers into EasyScintilla, but I will happily take pull requests for new stylers.
You can create your own stylers be deriving from the abstract class ScintillaStyler
Examples can be found in the Stylers
Directory.
Built in stylers
| Language | Styler Class |
|-------------------------------------|--------------------|
| C# | CSharpStyler
|
| HTML | HtmlStyler
|
| PowerShell | PowerShellStyler
|
| Python | PythonStyler
|
| Ruby | RubyStyler
|
| SQL | SqlStyler
|
| Teradata Parallel Transporter (TPT) | TptStyler
|
| Windows Batch | BatchStyler
|
EasyScintilla
A (hopefully) easier way to use ScintillaNET in Windows Forms
Installation
The easiest way to install is to use NuGet!
> Install-Package EasyScintilla
Usage
The goal was to make Scintilla as easy as possible to drop into a Windows Forms project.
From the forms designer, simply drag the SimpleEditor
control from the toolbox onto the form.
Then, in the code behind set the Styler
property.
this.simpleEditor1.Styler = new CSharpStyler();
That's it!
Common Issues
Some users have been having issues where the SimpleEditor
control does not get added to the Designer Toolbox.
To fix that, follow these steps:
- If you've not done so already, install EasyScintilla
- Open up the Windows Forms Designer
- Right click on the empty space in the Toolbox, and click "Choose Items"
- Once it has finished loading, click Browse.
- Navigate to your project directory, and look for the folder called "packages". This is where Visual Studio saves your NuGet packages after you install them.
- Navigate to
[solution_root]\packages\jacobslusser.ScintillaNET.3.6.3\lib\net40
and choose the fileScintillaNET.dll
and click OK. - Navigate to
[solution_root]\packages\EasyScintilla.1.0.3\lib\net40
and chooseEasyScintilla.dll
and click OK. - Click OK.
- You should now see both the
Scintilla
andSimpleEditor
controls appear in the Toolbox.Scintilla
is the base editor from Scintilla.NET andSimpleEditor
is from this project.
Stylers
I've built a few stylers into EasyScintilla, but I will happily take pull requests for new stylers.
You can create your own stylers be deriving from the abstract class ScintillaStyler
Examples can be found in the Stylers
Directory.
Built in stylers
| Language | Styler Class |
|-------------------------------------|--------------------|
| C# | CSharpStyler
|
| HTML | HtmlStyler
|
| PowerShell | PowerShellStyler
|
| Python | PythonStyler
|
| Ruby | RubyStyler
|
| SQL | SqlStyler
|
| Teradata Parallel Transporter (TPT) | TptStyler
|
| Windows Batch | BatchStyler
|
Release Notes
Added "Dark C# Styler" and C# Keyword Improvements
Dependencies
-
- jacobslusser.ScintillaNET (>= 3.6.3)
Used By
NuGet packages (2)
Showing the top 2 NuGet packages that depend on EasyScintilla:
Package | Downloads |
---|---|
Krypton.Toolkit.Suite.Extended.Core
An extension to the standard krypton toolkit to support .NET Core, .NET 5 and the latest .NET 3.5/4.x framework. Contains the core logic for the toolkit.
|
|
Krypton.Toolkit.Suite.Extended.Core.Canary
An extension to the standard krypton toolkit to support .NET Core, .NET 5 and the latest .NET 3.5/4.x framework. Contains the core logic for the toolkit.
|
GitHub repositories
This package is not used by any popular GitHub repositories.