다음을 통해 공유


방법: 텍스트 편집 컨트롤에서 맞춤법 검사 사용

업데이트: 2007년 11월

다음 예제에서는 SpellCheck 클래스의 IsEnabled 속성을 사용하여 TextBox에서 실시간 맞춤법 검사를 사용하는 방법을 보여 줍니다.

예제

<Page xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml">

  <StackPanel>
    <TextBox SpellCheck.IsEnabled="True" Name="myTextBox"></TextBox>
  </StackPanel>

</Page>
using System;
using System.Windows;
using System.Windows.Controls;

namespace SDKSample
{
    public partial class SpellCheckExample : Page
    {
        public SpellCheckExample()
        {
            StackPanel myStackPanel = new StackPanel();

            //Create TextBox
            TextBox myTextBox = new TextBox();
            myTextBox.Width = 200;

            // Enable spellchecking on the TextBox.
            myTextBox.SpellCheck.IsEnabled = true;

            // Alternatively, the SetIsEnabled method could be used
            // to enable or disable spell checking like this:
            // SpellCheck.SetIsEnabled(myTextBox, true);

            myStackPanel.Children.Add(myTextBox);
            this.Content = myStackPanel;
        }
    }
}

참고 항목

작업

방법: 상황에 맞는 메뉴로 맞춤법 검사 사용

개념

TextBox 개요

RichTextBox 개요