我在app.xaml.cs文件中创建了自己的自定义属性 我需要在我的一个viewmodel中访问此属性。 当我尝试通过Application对象访问时,它不会显示。 任何人都可以帮助我。
此致
答案 0 :(得分:12)
使用Application.Current
访问您已创建的自定义属性。
var currentApp = Application.Current as App;
currentApp.YourPropertyName = "WhateverYouWant";
请阅读此article on MSDN,并提供有关如何操作的示例。
答案 1 :(得分:0)
或只是Application.Current.Properties["YourSavePropertyKey"]