我有一个小资源字典和一个管理后面代码的小类,这里是代码:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="MyResources">
<DataTemplate x:Key="Template1">
<TextBox Name = TB_1 textchanged="handle_text" Margin="10,50 />
<Button Name="BT_1" Content="test1" Margin="10,10" />
</Grid>
</DataTemplate>
</ResourceDictionary>
dataTemplate显示在contentcontrol中的另一个类中,该类正常运行。
但是在MyResources类中,我希望在事件textchanged上升时使用handle_text函数获取文本框TB_1的文本值,但似乎MyResources类看不到名为TB_1的变量文本框(和所有其他变量)。 有可能这样做吗?
我感谢您的帮助。