如何访问Silverlight 4中App.xaml.cs中创建的自定义属性

时间:2012-01-24 07:51:16

标签: c# wpf silverlight

我在app.xaml.cs文件中创建了自己的自定义属性 我需要在我的一个viewmodel中访问此属性。 当我尝试通过Application对象访问时,它不会显示。 任何人都可以帮助我。

此致

2 个答案:

答案 0 :(得分:12)

使用Application.Current访问您已创建的自定义属性。

var currentApp =  Application.Current as App;
currentApp.YourPropertyName = "WhateverYouWant";

请阅读此article on MSDN,并提供有关如何操作的示例。

答案 1 :(得分:0)

或只是Application.Current.Properties["YourSavePropertyKey"]