N
Nicolas
How can I do this in Csharp
private void applyColor(Control ctr, string oProperty, Color newVal)
{
ctr.oProperty= newVal;
}
Need to Evaluate (ctr.oProperty) so the program understand for example
(this.Button1.BackColor = newVal)
Than you for your help
private void applyColor(Control ctr, string oProperty, Color newVal)
{
ctr.oProperty= newVal;
}
Need to Evaluate (ctr.oProperty) so the program understand for example
(this.Button1.BackColor = newVal)
Than you for your help