为什么我无法通过后面代码中的单元格编辑模板中声明的名称访问变量?
我有一条银光腰带。我使用 AutoCompleteBox 作为单元格编辑模板的列之一。我声明如下
<c1:Column.CellEditingTemplate>
<DataTemplate>
<sdk:AutoCompleteBox x:Name="TestField" Text="{Binding ReferencePath,Mode=TwoWay}" Populating="tester_Populating" MinimumPrefixLength="0" IsDropDownOpen="True" LostFocus="tester_LostFocus"/>
</DataTemplate>
</c1:Column.CellEditingTemplate>
当我尝试在后面的代码中访问 TestField 时,它不可用。为什么在后面的代码中无法访问该变量?
I have a silverlight gird. One of the columns I use AutoCompleteBox as cell edit template. I declare it as follows
<c1:Column.CellEditingTemplate>
<DataTemplate>
<sdk:AutoCompleteBox x:Name="TestField" Text="{Binding ReferencePath,Mode=TwoWay}" Populating="tester_Populating" MinimumPrefixLength="0" IsDropDownOpen="True" LostFocus="tester_LostFocus"/>
</DataTemplate>
</c1:Column.CellEditingTemplate>
When I tried to access TestField in the code behind, it is not available. Why is this variable not accessible in the code behind?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在以下链接中找到答案,
http://forums.silverlight.net/forums /p/200237/467179.aspx
Found the answer in the following link,
http://forums.silverlight.net/forums/p/200237/467179.aspx