I'm using the Application.MessageBox to show messages on my VCL application, but when the application had a vcl style applied the message window is shown with the windows style instead of the current vcl style.
Sample code
Application.MessageBox('Hello World', 'Hello', MB_OK + MB_ICONINFORMATION);
Sample Image

How I can show a message box with the current vcl style?
