0

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>
4

1 回答 1

1

设置x:Key,用于StaticResource参考。Application.Resources可以在应用程序的任何地方访问。

于 2012-09-09T00:58:42.920 回答