You can run the NOV Theme Builder in any of the following 3 ways:
- Run the Nevron.Nov.ThemeBuilder application that comes with NOV
- Open the User Interface > Appearance > Theme Builder example that comes with NOV and click the Open NOV Theme Builder button of the example.
- Use the following piece of code in any NOV application:
Show the NOV Theme Builder programmatically |
Copy Code
|
---|---|
// Create a Theme Builder widget NThemeBuilderWidget themeBuilderWidget = new NThemeBuilderWidget(); // Create and open a top level window with the Theme Builder widget NTopLevelWindow window = NApplication.CreateTopLevelWindow(); window.StartPosition = ENWindowStartPosition.CenterScreen; window.PreferredSize = new NSize(1000, 700); window.SetupApplicationWindow("NOV Theme Builder"); window.Modal = true; window.Content = themeBuilderWidget; // Open the window and show the Theme Builder start up dialog window.Open(); themeBuilderWidget.ShowStartUpDialog(); |