DataGridTextColumn上的拼写检查程序

时间:2015-11-30 05:37:47

标签: wpf xaml spell-checking

美好的一天。我还是一名初级程序员,最近开始在WPF编写代码。我有一个datagrid,我生成自己的列。在一个特定的列,DataGridTextColumn中,我必须应用拼写检查(用户可以在此字段中添加注释)。但我无法做到这一点。我尝试过应用风格但没有运气。任何援助将不胜感激!以下是该列的编码:

    <DataGridTextColumn x:Name="clValueComment" Binding="{Binding CommentColumn, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Header="ROOTCAUSE OR COMMENT" Width="*" IsReadOnly="False" Style="{StaticResource Spell}">
                    <DataGridTextColumn.CellStyle>
                        <Style TargetType="{x:Type DataGridCell}">
                            <Style.Triggers>
                                <Trigger Property="IsSelected" Value="True">
                                    <Setter Property="Foreground" Value="Black" />
                                </Trigger>
                                <DataTrigger Binding="{Binding valueTypeID}" Value="1">
                                    <Setter Property="ContentTemplate">
                                        <Setter.Value>
                                            <DataTemplate>
                                                <Label IsEnabled="False"/>
                                            </DataTemplate>
                                        </Setter.Value>
                                    </Setter>
                                </DataTrigger>
                            </Style.Triggers>
                        </Style>
                    </DataGridTextColumn.CellStyle>
                </DataGridTextColumn>

1 个答案:

答案 0 :(得分:4)

在玩了一些Styling选项后,我发现了一个似乎有效的解决方案。我会发布它作为可能遇到相同要求的人的答案。执行该技巧的XAML编码是:

    <DataGridTextColumn.EditingElementStyle>
                        <Style TargetType="TextBox">
                            <Setter Property="SpellCheck.IsEnabled" Value="True"/>
                        </Style>
                    </DataGridTextColumn.EditingElementStyle>