Skip to content

Commit c962f89

Browse files
committed
Review
1 parent 4fd5863 commit c962f89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • content/en/docs/apidocs-mxsdk/apidocs/studio-pro-11/extensibility-api/csharp/extensibility-api-howtos

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-11/extensibility-api/csharp/extensibility-api-howtos/create-menu-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Test your extension by creating or using a Mendix app.
4747

4848
## Creating Your First Extension
4949

50-
To introduce a simple extension that adds a menu item to Studio Pro, add the following class:
50+
To add a menu item to Studio Pro, add the following class:
5151

5252
```csharp
5353
using System.ComponentModel.Composition;
@@ -67,7 +67,7 @@ public class MyMenuExtension(IMessageBoxService messageBoxService) : MenuExtensi
6767
}
6868
```
6969

70-
Build your extension and press <kbd>F4</kbd> in Studio Pro. Extension menu items are placed under a corresponding menu with the extensions name. If your extension is named "My Extension", then your menu items will be located under the **Extensions** > **My Company** submenu.
70+
Build your extension and press <kbd>F4</kbd> in Studio Pro. Menu items are placed under a corresponding menu with the extensions name. For example, if your extension is named *My Extension*, your menu items will be located under the **Extensions** > **My Company** sub-menu.
7171

7272
The Extensibility API provides you with several services you can use and they are injected into your extension classes by using the `ImportingConstructor` attribute.
7373

0 commit comments

Comments
 (0)