App.Current.Properties [“some”]和Application.Current.Properties [“some”]

时间:2016-01-05 13:22:26

标签: c# wpf

这两个类(App和Application)之间有什么不同。我制作WPF应用程序,在使用App和使用Application类的地方时,我需要小心。现在我使用App.Current.Properties["property"] = property;,但在使用Application.Current.Properties["property"] = property;之前。这两种情况都有效。是否有任何差异。

1 个答案:

答案 0 :(得分:2)

它是一样的。 App被声明为

class App : Application

所以它继承(如果我可以这么说)所有静态属性(包括Current一个)。