CustomUI

From Jeremie Leroy - XOJO Controls Wiki
Revision as of 12:36, 30 June 2014 by Admin (Talk | contribs) (Applying the style at Application Launch)

Jump to: navigation, search

Using a Custom Style

As soon as you have created a custom style using the CustomUI Builder, you should have an XML file containing the style definition.

The easiest way to apply this style in your Xojo project is to drag & drop the XML file into your Xojo project.

Applying the style at Application Launch

In the Xojo Navigator select the App element

App-Select.png


Then click on the "+" button to add a new code item, and select Event Handler

Add-EventHandler.png


Xojo now displays the Add Event Handler window. Select the Open event then click on OK

Open-Event.png


The App item now has an Open event handler in the Navigator:

App-OpenEvent.png


Finally, copy and paste the following line of code to apply the style, assuming the XML file is named CustomStyle.xml:

Call UI_Module.LoadFromXML(CustomStyle)