I can't seem to reference a public nested enum type from XAML. I have a class
namespace MyNamespace
{
  public class MyClass
  {
    public enum MyEnum
    {
       A,
       B,
    }
  }
}
And I try to reference MyEnum in Xaml like this:
xmlns:MyNamespace="clr-namespace:MyNamespace;assembly=MyApp"
....
{x:Type MyNamespace:MyClass:MyEnum}    // DOESN'T WORK
but VS complains it can't find public type MyEnum.  I also tried using the + syntax based on one of the answers to this post...
{x:Type MyNamespace:MyClass+MyEnum}    // DOESN'T WORK
but that doesn't work either.
Note that x:Static does work with the + syntax:
{x:Static MyNamespace:MyClass+MyEnum.A}  // WORKS
And if I move MyEnum out of MyClass I can reference it too.  But not if it's nested... 
So what am I missing?  How do I reference a nested enum from XAML using x:Type?  (And note, I'm not trying to instantiate anything, just reference the type).
UPDATE
It looks like this is just a bug with the VS 2010 designer.  The designer complains that Type MyNamespace:MyClass+MyEnum was not found.  But the application appears to run and properly access the nested type.  I tried this with a nested class too, and it works at run time.  
Possible open bug: http://social.msdn.microsoft.com/forums/en-US/wpf/thread/12f3e120-e217-4eee-ab49-490b70031806/
Related thread: Design time error while writing Nested type in xaml
 
     
    