In ASP.NET, I can do Session[\"something\"] = something;, and then I can retrieve in another page the value of the session. Is there a Session in WPF that would
Session[\"something\"] = something;
Try the following:
System.Windows.Application.Current.Properties["Something"] = Something;
I Used this many times in my project,