Difference between revisions of "Creating our first button in CS"
(→Creating a button) |
|||
Line 16: | Line 16: | ||
namespace DynamicRibbonXAddin | namespace DynamicRibbonXAddin | ||
{ | { | ||
− | + | class MyCustomUI2 | |
− | class | + | |
{ | { | ||
private rxCustomUI _customUI; | private rxCustomUI _customUI; | ||
− | public | + | public MyCustomUI2() |
{ | { | ||
// Instantiate a new rxCustomUI in a new context with id 'my_test_cs_ctx' | // Instantiate a new rxCustomUI in a new context with id 'my_test_cs_ctx' | ||
_customUI = rxCustomUI.create("my_test_cs_ctx", "Test C# Context"); | _customUI = rxCustomUI.create("my_test_cs_ctx", "Test C# Context"); | ||
− | + | _customUI.clear(); | |
− | + | ||
− | // | + | // Add a new tab and label it |
− | rxTab myTab = new rxTab(); | + | rxTab myTab = _customUI.ribbon.tabs.add(new rxTab()); |
− | myTab.label = "My | + | myTab.label = "My C# Tab"; |
− | // Add the tab | + | // Add a new group to the tab and label it |
− | + | rxGroup myGroup = myTab.groups.add(new rxGroup()); | |
+ | myGroup.label = "My C# Group"; | ||
+ | // Add a new button to the group and label it | ||
+ | rxButton myButton = myGroup.buttons.add(new rxButton()); | ||
+ | myButton.label = "Click Me!"; | ||
+ | |||
// Render the UI | // Render the UI | ||
_customUI.refresh(); | _customUI.refresh(); | ||
+ | |||
} | } | ||
− | |||
} | } | ||
} | } | ||
Line 50: | Line 53: | ||
public partial class ThisAddIn | public partial class ThisAddIn | ||
{ | { | ||
− | private | + | private MyCustomUI2 _myCustomUI; |
private void ThisAddIn_Startup(object sender, System.EventArgs e) | private void ThisAddIn_Startup(object sender, System.EventArgs e) | ||
{ | { | ||
// Show the custom ribbon | // Show the custom ribbon | ||
− | + | _myCustomUI2 = new MyCustomUI(); | |
} | } | ||
Revision as of 13:09, 15 March 2013
Contents
Prerequisites
We recommend you go through A 'hello world' C# program before going into this example.
Creating a button
- Add a new class to your project and name it MyCustomUI.
- Add the following code to your class
// Namespaces of the two Dynamic RibbonX assemblies
using LogismiX.Interop.DynamicRibbonX;
using LogismiX.DynamicRibbonX.Core;
namespace DynamicRibbonXAddin
{
class MyCustomUI2
{
private rxCustomUI _customUI;
public MyCustomUI2()
{
// Instantiate a new rxCustomUI in a new context with id 'my_test_cs_ctx'
_customUI = rxCustomUI.create("my_test_cs_ctx", "Test C# Context");
_customUI.clear();
// Add a new tab and label it
rxTab myTab = _customUI.ribbon.tabs.add(new rxTab());
myTab.label = "My C# Tab";
// Add a new group to the tab and label it
rxGroup myGroup = myTab.groups.add(new rxGroup());
myGroup.label = "My C# Group";
// Add a new button to the group and label it
rxButton myButton = myGroup.buttons.add(new rxButton());
myButton.label = "Click Me!";
// Render the UI
_customUI.refresh();
}
}
}
- Modify class ThisAddin in ThisAddin.cs as follows
namespace DynamicRibbonXAddin
{
public partial class ThisAddIn
{
private MyCustomUI2 _myCustomUI;
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
// Show the custom ribbon
_myCustomUI2 = new MyCustomUI();
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
}
}
- Run the add-in. If everything went according to plan a new tab labeled 'My First Tab' will appear when the application starts
Code Analysis
// Instantiate a new rxCustomUI in a new context with id 'my_test_cs_ctx'
_customUI = rxCustomUI.create("my_test_cs_ctx", "Test C# Context");
rxCustomUI is at the top of the object model hierarchy. Here we instantiate a new rxCustomUI object in a new context with id 'my_text_cs_ctx' with description 'Test C# Context'
// Cache a reference to the custom UI's ribbon
rxRibbon myRibbon = _customUI.ribbon;
Each rxCustomUI object owns a unique rxRibbon object. Here, we are caching a reference to the rxRibbon object of _customUI
// Create a new tab and label it 'My Tab'
rxTab myTab = new rxTab();
myTab.label = "My First Tab";
Here, we create a new rxTab object and give it a label
// Add the tab to myRibbon's tabs
myRibbon.tabs.add(myTab);
Each rxRibbon object has a collection of rxTab objects (accessible through its tabs property). Here we add the tab we created above to our ribbon's tabs
// Render the UI
_customUI.refresh();
To ensure optimal performance, UI updates always take place in two steps:
- Update the target rxCustomUI state, which we have done above
- Render the updated UI, which we are doing here
Remarks
- rxCustomUI contexts are identified by their unique context ids (e.g. 'my_test_cs_ctx' above). When an rxCustomUI is created with a contextId that doesn't correspond to an existing context, the context gets created. Otherwise the rxCustomUI joins the context and shares its state with other rxCustomUIs in it.
- You can use rxCustomUI.clear to clear a context's state
Making our code more compact
The Dynamic RibbonX API is composable, which we can take advantage to make our code more compact:
namespace DynamicRibbonXAddin
{
class MyCustomUI2
{
private rxCustomUI _customUI;
public MyCustomUI2()
{
// Instantiate a new rxCustomUI in a new context with id 'my_test_cs_ctx'
_customUI = rxCustomUI.create("my_test_cs_ctx", "Test C# Context");
// Add a new tab and label it
_customUI.ribbon.tabs.add(new rxTab
{
label = "My First Tab"
});
// Render the UI
_customUI.refresh();
}
}
}