Difference between revisions of "HowTo:Inject UI into UBIK Studio"
| Line 12: | Line 12: | ||
1. Create or reuse a .Net library (DLL) project - it doesn't have to be a {{UBIK}} Module.<br> | 1. Create or reuse a .Net library (DLL) project - it doesn't have to be a {{UBIK}} Module.<br> | ||
2. Add the designated control as a class deriving from System.Windows.Forms.UserControl to the project.<br> | 2. Add the designated control as a class deriving from System.Windows.Forms.UserControl to the project.<br> | ||
| − | 3.Implement the interface IUBIKEnvironmentControl for the control.<br> | + | 3. Implement the interface IUBIKEnvironmentControl for the control.<br> |
4. For automatic injection, add the "Export" Attribute with the "IUBIKControl" type parameter to the designated control.<br> | 4. For automatic injection, add the "Export" Attribute with the "IUBIKControl" type parameter to the designated control.<br> | ||
<syntaxhighlight lang="csharp"> | <syntaxhighlight lang="csharp"> | ||
Revision as of 11:26, 17 June 2026
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!



