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

前端之家收集整理的这篇文章主要介绍了c# – 如何在WPF中保存全局应用程序变量?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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");

解决方法

这样的事情应该有效.
public static class ApplicationState 
{ 
    private static 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];
    }
}
原文链接:https://www.f2er.com/csharp/95117.html

猜你在找的C#相关文章