我有一个跟踪视频流的 a 类,为了简单起见,我使用自动属性将子类中的属性分组以访问它们。然后我将整个类绑定到一个 BindingList,但只显示了 None Nested Properties。我怎样才能让嵌套属性也显示出来?
public class Stream: : INotifyPropertyChanged
{
public bool InUse {
get { return _inUse; }
set {
_inUse = value;
OnPropertyChanged("InUse");
}
}
}
....
internal SubCodec Codec { get; set; }
internal class SubCodec
{
public string VideoCodec
{
get { return _audioCodec; }
set {
_audioCodec = value;
OnPropertyChanged("AudioCodec");
}
}
....
}