Hi, There is a thing I do not understand well: when virtual method is called, the base method is called as well?
Because when I use public override WinForm OnPaint method, in its body base.OnPaint(e) is called. I do not understand it, I thought virtual methods overrides the original one. If it is not usually called, why it is called in this case? Thank you