我有静态类'MappingService'。
public class MappingService : INotifyPropertyChanged
{
static readonly MappingService _Instance = new MappingService();
public static MappingService Instance
{
get { return _Instance; }
}
public Efficiency Source { get; set; }
}
并在后面的代码中创建 ComboBox。
我想在后面的代码中绑定 ItemsSource MappingService.Instance.Source。
comboBox.SetBinding(ItemsControl.ItemsSourceProperty, new Binding("MappingService.Instance.Source") { Mode = BindingMode.TwoWay });
但我无法访问 MappingService.Instance.Source。
请帮助我。谢谢你。