# 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 ttn_monacoeditor

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}" }); ``` ![image](https://github.com/user-attachments/assets/6d1d10fe-768c-4ea0-bfe7-c108406b9053) ![image](https://github.com/user-attachments/assets/44c51afd-0440-4ef6-bdcc-610d6987433a)