0

I want to set Name value of the xamdatagrid field from properties Resources file

xamdatagrid field name property

user2392525
  • 33
  • 1
  • 11

1 Answers1

0

As answered here, you can use the x:Static markup extension:

<igDP:Field Name="{x:Static res:ResourceFileName.FieldName}"

You will need to declare the res namespace:

xmlns:res="clr-namespace:TheNamespaceOfYourResxFile"

And change the Access Modifier of the resx file to Public

Community
  • 1
  • 1