XAML Binding to static classes [duplicate]
问题 This question already has an answer here : Closed 7 years ago . Possible Duplicate: Accessing static fields in XAML I have one static class with two static properties inside. For example: public static class myStaticClass { public static A a; public static B b; } public class A { public ObservableCollection<Person> persons; public struct Person { private string mame; public string Name { get; set; } } } public class B { public ObservableCollection<Coord> coords; public struct Coord { private