I want to set Name value of the xamdatagrid field from properties Resources file
xamdatagrid field name property
I want to set Name value of the xamdatagrid field from properties Resources file
xamdatagrid field name property
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