从DataGridTextColumn获取带有Textblox样式的文本

时间:2014-09-11 10:12:24

标签: c# wpf datagridtextcolumn

我目前正在支持一个项目,我收到了一个更改datagridcell验证的工作,使他们插入的文本块输入只有50个字符。

我现在已经得到了datagrid的gotfocus()事件,并检查每个DataGridTextColumn的标头,如果正确的那个得到焦点,我为该列创建一个Key_Down事件。

在Key_Down事件中,我想测试当前字符串的长度,如果它超过50,我希望文本框不再添加到字符串中。但我的问题是,我没有从DataGridTextColumn获取文本。这是我的代码:

XAML

<DataGrid Grid.Column="3" GotFocus="transitRouteParticularsGrid_GotFocus" AutoGenerateColumns="False" x:Name="transitRouteParticularsGrid" Grid.ColumnSpan="9" Grid.Row="30" Grid.RowSpan="6" CanUserResizeColumns="False" CanUserSortColumns="False" CanUserResizeRows="False" CanUserReorderColumns="False">

<DataGridTextColumn x:Name="cmbDestination" Header="Destination" EditingElementStyle="{StaticResource errorStyle}" Width="200" Binding="{Binding CustomDestination, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}">                        
                        <DataGridTextColumn.ElementStyle>
                            <Style TargetType="{x:Type TextBlock}">
                                <Setter Property="TextAlignment" Value="Center" />

                            </Style>
                        </DataGridTextColumn.ElementStyle>
                    </DataGridTextColumn>

   </DataGrid>

我到目前为止的代码

private void transitRouteParticularsGrid_GotFocus(object sender, RoutedEventArgs e)
        {
            if (e.OriginalSource.GetType() == typeof(DataGridCell))
            {
                DataGridCell ChosenItem = (DataGridCell)e.OriginalSource;

                if ((ChosenItem.Column.Header.ToString() == "Destination") && (Routevalue == "CUSTOM"))
                {
                    ChosenItem.KeyDown += ChosenItem_KeyDown;
                }
            }
        }


 void ChosenItem_KeyDown(object sender, KeyEventArgs e)
        {
            string curentText = "";
            int maxlen = 50;
            DataGridCell griddestination = (DataGridCell)sender;

            if (griddestination.Column.GetType() == typeof(DataGridTextColumn))
            {
                //i have no idea what should be here???
                //any other solution would also be appreciated

                var DestinationColumn = griddestination.Column;

                //Check for length

                if (curentText.Length > 50)
                {
                   //Do whatever to text
                }
                else
                {
                   // destination.Text = curentText;
                }
            }
            else
            {
                e.Handled = true;
            }         
        }

图片 Runtime how the datagrid looks

所以我需要知道如何获取我为此专栏输入的文字?

任何帮助都会很棒:)

感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用DataGridCell.Content属性获取单元格的可视树,导航相同取决于EditingElementStyle="{StaticResource errorStyle}"中定义的errorStyle模板

假设它基于TextBox这里是如何获取文本框

TextBox cellTextbox = (TextBox)griddestination.Content;

现在你可以使用它来获取文本值或操作。

上面的

仅在单元格处于编辑模式时有效,否则单元格内容是由ElementStyle定义的TextBlock

为安全起见,您可以写与

相同的内容
TextBox cellTextbox = griddestination.Content as TextBox;
if(cellTextbox != null)
{
   //your logic
}