D
David McCallum
In Java you have an Action class to can assign to various things, e.g.
button.setAction(myAction);
menuitem.setAction(myAction);
The advantage being if I change a property of myAction, e.g. disabled,
caption, the change is reflected in the button and menuItem.
Is there an equivalent in C#
TIA
David McCallum
button.setAction(myAction);
menuitem.setAction(myAction);
The advantage being if I change a property of myAction, e.g. disabled,
caption, the change is reflected in the button and menuItem.
Is there an equivalent in C#
TIA
David McCallum