in XAML our code looks like
```
<Button Content="{l:Resource Key=Open, ResourceAssemblyBaseName=Company.Namespace.Properties.UIResources}"
HorizontalAlignment="Left"
Margin="0,5,0,0"></Button>
```
The Key ("Open" in the example) corresponds with the resource key. So I made a first try to to define an entry in the "Detect Code References" table like this:
.xaml \W($.Key)\W Case sensitive is checked
But the references in XAML are not found. The references found with the given .cs expressions are found correctly though. Did I made a mistake or is there a problem with XAML?
Comments: ** Comment from web user: tomenglert **
I'll have a look...