如何在WPF中保存全局应用程序变量?

时间:2009-05-26 12:28:12

标签: c# wpf global-variables

在WPF中,我可以在一个UserControl中保存值,然后再在另一个UserControl中再次访问该值,例如Web编程中的会话状态,例如:

UserControl1.xaml.cs:

Customer customer = new Customer(12334);
ApplicationState.SetValue("currentCustomer", customer); //PSEUDO-CODE

UserControl2.xaml.cs:

Customer customer = ApplicationState.GetValue("currentCustomer") as Customer; //PSEUDO-CODE

解答:

谢谢,鲍勃,这是我开始工作的代码,基于你的代码:

public static class ApplicationState
{
    private static Dictionary<string, object> _values =
               new Dictionary<string, object>();
    public static void SetValue(string key, object value)
    {
        if (_values.ContainsKey(key))
        {
            _values.Remove(key);
        }
        _values.Add(key, value);
    }
    public static T GetValue<T>(string key)
    {
        if (_values.ContainsKey(key))
        {
            return (T)_values[key];
        }
        else
        {
            return default(T);
        }
    }
}

保存变量:

ApplicationState.SetValue("currentCustomerName", "Jim Smith");

读取变量:

MainText.Text = ApplicationState.GetValue<string>("currentCustomerName");

4 个答案:

答案 0 :(得分:14)

The Application class已经内置了此功能。

// Set an application-scope resource
Application.Current.Resources["ApplicationScopeResource"] = Brushes.White;
...
// Get an application-scope resource
Brush whiteBrush = (Brush)Application.Current.Resources["ApplicationScopeResource"];

答案 1 :(得分:9)

这样的事情应该有效。

public static class ApplicationState 
{ 
    private static Dictionary<string, object> _values =
               new Dictionary<string, object>();

    public static void SetValue(string key, object value) 
    {
        _values.Add(key, value);
    }

    public static T GetValue<T>(string key) 
    {
        return (T)_values[key];
    }
}

答案 2 :(得分:2)

您可以在App.xaml.cs文件中公开一个公共静态变量,然后使用App类在任何地方访问它。

答案 3 :(得分:0)

可以将它自己存储在静态类或存储库中,您可以将其存入需要数据的类中。