IM 本质上不是 C# 程序员,但我可以满足我的需要。我正在尝试学习 WPF,我的问题是,我可以在 App.xaml 中声明我的类并从我所有的单独控件中访问它吗?我主要对此感兴趣,因为我不想拥有一个 LogWriter 并让所有人都与之交谈。
<!-- App.xaml -->
<Application x:Class="MyAPP.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:src="clr-namespace:LogWriter"
StartupUri="MainWindow.xaml">
<Application.Resources>
<src:LogWriter x:Name="LogWriter"/>
</Application.Resources>
</Application>