I am creating a custom control and it is a button. It may has a type and a specified image according to its type. Its type may be:
public enum ButtonType
{
PAUSE,
PLAY
}
Now I can change its appearance and Image with a method:
public ButtonType buttonType;
public void ChangeButtonType(ButtonType type)
{
// change button image
if (type == ButtonType.PAUSE)
button1.Image = CustomButtonLibrary.Properties.Resources.PauseButton;
else if (type == ButtonType.PLAY)
button1.Image = CustomButtonLibrary.Properties.Resources.PlayButton;
buttonType = type;
}
OK, this method doesn't seems so good, for example maybe later I wish to have another type STOP for example for this button, I want just add its image to resources and add it to ButtonType enum, without changing this method.
How can I implement this method to be compatible with future changes?
ChangeButtonTypemethod? Is it on your custom button? – Anna Lear♦ Oct 1 '11 at 14:44