1

How can I use ms-resource in page XAML file?

<Button  Name="btn_SaveNote" Content="ms-resource:Done" ></Button>
CCovey
  • 799
  • 1
  • 10
  • 17
Hager Aly
  • 1,113
  • 9
  • 25

1 Answers1

0

If you want to use Strings from resource files in your windows 8 app.

Then use this

<Button x:Uid="StringName" Content="">

and in resource file it should be defined as

StringName.Content
Aman Chaudhary
  • 200
  • 1
  • 2