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
In my opinion, the best way to do it will be to store it in the current properties of your application like this :
Application.Current.Properties["stuff"]
You can store any kind of object, but don't abuse it.
I will personally use this kind of tricks only if I have no other way to share data (same advice than Grant Winney)
I prefer using Resources for translation or images and properties for other flag/data just to separate things a little