-1

I know its kind of stupid question, but I am beginner in C#. I want to create start page with settings where user can set a values. How I can relay these values to other page ?

Solution that will give me someone will work with IsolatedStorage? It does not have, but it's good to know for the future.

JohnCE
  • 83
  • 2
  • 8

2 Answers2

2

This question unfortunately needs a tutorial as answer. Bing has many of these:

Your task involves basic UI design, page navigation with parameters and/or data persistence.

And you are even allowed to use Google to find these.

Community
  • 1
  • 1
Heinrich Ulbricht
  • 9,107
  • 3
  • 45
  • 70
0

If these settings need to be global, then add a static public member variable to the App.xaml.cs file. Set and Get as required from that property.

IsolatedStorage is useful for persisting data when your application closes, but otherwise in Memory persistence via globally accessible properties could be fine for your requirements.

Scott Ferguson
  • 7,290
  • 7
  • 34
  • 64