From 7cb9090a73bd67ca607fe5b2c1654fa017aef688 Mon Sep 17 00:00:00 2001 From: KrithikaGanesan Date: Fri, 24 Oct 2025 14:09:07 +0530 Subject: [PATCH] 985360: Updated ReadMe file of this repository --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 660f792..9f5a367 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ -# How to configure custom language using WPF Syntax Editor? +# How to Configure Custom Language Using WPF Syntax Editor? +This repository demonstrates how to configure and apply a custom language definition—specifically IronPython—in the WPF [Syntax Editor](https://help.syncfusion.com/wpf/syntax-editor/getting-started) control provided by Syncfusion. The WPF Syntax Editor is a powerful text editor control that supports syntax highlighting, code editing, and parsing for various programming languages. It is highly customizable and supports defining your own language grammars using XML-based configuration files. -This sample holds the configuration of custom language - IronPython applied and loaded using [Syntax Editor](https://help.syncfusion.com/wpf/syntax-editor/getting-started). +In this sample, we show how to: + +- Create a custom language definition file for IronPython. +- Load and apply the custom language to the Syntax Editor at runtime. +- Highlight keywords, comments, strings, and other syntax elements specific to IronPython. +- Integrate the Syntax Editor into a WPF application with minimal setup. + +This approach is ideal for developers building code editors, IDEs, or any application that requires syntax-aware text editing. By using custom language configurations, you can tailor the editor to support domain-specific languages or scripting environments. ![Syntax Editor with custom language](Images/output.png)