How to properly subclass SeekBar in MonoDroid?
问题 I'm currently having a issue with the SeekBar class in MonoDroid. Currently I have extended it like this: public class TTSeekBar : SeekBar, ITTComponent { public TTSeekBar(Context context): base(context) { } private int _min = 0; public int Min { get { return _min; } set { _min = value;} } public override int Progress { get { return base.Progress + _min; } set { base.Progress = value; } } public override int Max { get { return base.Max + _min; } set { base.Max = value + _min; } } public