Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/CS/SpellCheckerDemo.Wpf/Modules/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/WPF/CS/SpellCheckerDemo.Wpf/Modules/TextBox.xaml.cs

using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System;
using System.Globalization;
using DevExpress.XtraRichEdit.Commands;
using DevExpress.XtraRichEdit;
using System.IO;

namespace SpellCheckerDemo {
    public partial class TextBox : SpellCheckerDemoModule {
        public TextBox() {
            InitializeComponent();
        }
        private void Button_Click(object sender, RoutedEventArgs e) {
            SpellChecker.Check(tb);
        }
    }
}