You are busy creating an extended control deriving class from Button. What should you do to render your control with an oval shape which must prevent other control from modifying the rendering behavior of your control?
A.
You should override the OnPaint method and call the base implementation and render the control.
B.
You should override the OnPaintBackground method and render the control but not call the base implementation.
C.
You should override the OnPaint method and render the control but not call the base implementation.
D.
You should override the OnPaintBackground method and call the base implementation and render the control.