Since version 5.2 it is possible to inject UI into UBIK® Studio.
The injected UI can be displayed inside a User Control and or Window.
This article will help you to inject your UI!
The goal is to extend the existing user control list with the injected user control.
Every time you drag an instance to a new window, the list with the new control will show up
Extended user control list
Implementation
1. Paste your UserControl in the plugin solution.
2. Make your UserControl implements IUBIKEnvironmentControl and add the export.
3. The user control now has a property Description and Image.
4. Set the properties in the constructor of the User Control. The text of description and the image will show up in the User Control List.
5. After making the changes make sure to update the plugin in the injection folder.
6. When starting UBIK® Studio the new user control will show up in the list.
Window
Overview
A additional button can be added to the tool bar
Injected button
Implementation
1. Paste your Window in the plugin solution.
2. Create a new class that implements IUBIKWindowFactory.
public Window GetWindow(UBIKEnvironment env) { returnnew TestWindow(env); } }
3. Assign values to the "Icon" and "Lable" properties they will be used for the button.
4. In the GetWindow Method return the window that you moved to the solution.
5. After making the changes, make sure to update the plugin in the injection folder.
6. When starting UBIK® Studio the new button will show up in the tool bar.