在我的App.xaml中 我在我的应用程序中初始化了一个我不想在不同类中使用的对象
<Application.Resources>
<local:DalEngine x:Key="_engine" x:Name="_engine"/>
</Application.Resources>
如何在具有相同名称空间的类中的代码中引用此对象?
答案 0 :(得分:1)
命名空间无关紧要,您可以使用Application.Current.FindResource
。 (或直接Application.Current.Resources["_engine"]
)