将全局对象添加到wpf应用程序

时间:2012-04-06 04:20:55

标签: wpf xaml

在我的App.xaml中 我在我的应用程序中初始化了一个我不想在不同类中使用的对象

 <Application.Resources>
      <local:DalEngine x:Key="_engine" x:Name="_engine"/>        
 </Application.Resources>   

如何在具有相同名称空间的类中的代码中引用此对象?

1 个答案:

答案 0 :(得分:1)

命名空间无关紧要,您可以使用Application.Current.FindResource。 (或直接Application.Current.Resources["_engine"]