I want to create a control MessageProvider
just like ErrorProvider
..what I did is, created a class and inherited from ErrorProvider..
But now problem is, instead of SetError
and GetError
methods, I want to have SetMessage
and GetMessage
..and those SetError
and GetError
methods should not be part of MessageProvider class..
How can I create a new control MessageProvider
?
You could encapsulate the ErrorProvider within your new control.