# TitanSystems.CodeEditor.Wrapper
**Repository Path**: BinGo2019/TitanSystems.CodeEditor.Wrapper
## Basic Information
- **Project Name**: TitanSystems.CodeEditor.Wrapper
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-12-31
- **Last Updated**: 2025-12-31
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# TitanSystems Monaco Editor Wrapper
A wrapper for implementing the Microsoft Monaco Editor in your WinForms / WPF application.
The control is avaiable on nuget:
TitanSystems.Monaco.Wrapper.WPF
TitanSystems.Monaco.Wrapper.WinForms
```csharp
using TitanSystems.CodeEditor.UI.WinForms;
using TitanSystems.CodeEditor.Data.BasicModels;
var ed = new CodeEditorControl(new MonacoEditorConfiguration()
{
Language = EditorLanguage.JavaScript,
Theme = EditorTheme.VSDark,
Value = "function hello() {\n\talert('Hello world!');\n}"
});
```

