Tuesday, 9 June 2020


How to change color for all AX form in AX 2012


Class -> SysSetupFormRun - > run

Code :

public void run()
{
    super();
    
this.design().colorScheme(FormColorScheme::RGB);
this.design().backgroundColor(WinAPI::RGB2int(255, 108, 97));
  
}

output:


you can make combination of colors from w3schools website





Thank you.

No comments:

Post a Comment