Допустим, у меня есть два класса, как это:
public class LocalResources
{
public Color ForegroundColor { get; set; }
}
public static class OrganisationModule
{
public static LocalResources Resources = new LocalResources
{
ForegroundColor = Color.FromRgb(32, 32, 32)
};
}
Почему в коде XAML я не могу этого сделать (при условии, что все правильные пространства имен xml существуют)?
<TextBlock Foreground="{x:Static Modules:OrganisationModule.Resources.ForegroundColor}" />
При компиляции выдается ошибка: Cannot find the type 'OrganisationModule.ColorManager'. Note that type names are case sensitive.