在数据网格中查找文本框
我有一个包含四列的数据网格。
因此,从 C# 端的这个数据网格中,我想找到 name = "headBox" 的特定文本框,
我该如何做呢?我的该列的 xaml 如下所示。此部分位于 Datagrid.Columns 中,该列位于名称 = dgrid 的 datagrid 标记内
<DataGridTemplateColumn Header="Header">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBox Name="HeadBox"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
I have a datagrid which contains four columns.
So from this datagrid on the C# side, i want to find the particular textbox with name = "headBox"
How I go about doing this? my xaml for the column goes as below. This section is within Datagrid.Columns which is inside the datagrid tag with name = dgrid
<DataGridTemplateColumn Header="Header">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBox Name="HeadBox"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你可以使用
编辑
I think you can use
EDIT