I'm trying to bind a list in xaml as an itemsource. The catch is, the list is kept in a resource file within another project's properties (in the same solution). I've been trying to create a namespace but it continues to tell me that myproject.Properties.Resources does not exist when it clearly does.
Short example to help explain the rough idea: Project1.xaml
<Grid ItemsSource={Binding (binding goes here)} />
Project2.Properties.Resources
public static namespace.listobject MyList;
Hopefully it's relatively straightforward and someone can give me an answer soon. Thanks in advance!