Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am a newbie in development. I am trying to migrate Babylon Exporter (For 3DS MAX) from version 2024 to 2025. Due to the revision of the 3DS MAX Menu system, the C++ API has changed from the original IMenu / IMenuItem to the current ICuiMenuManager / ICuiMenuItem, etc. In the old version, C# only needs to introduce Autodesk.max.dll, use the below code to call menu-related APIs.
using Autodesk.Max;
IIMenu menu;
IIMenuItem menuItem;
However, in the SDK of 3DS MAX 2025, I cannot find the corresponding API in Autodesk.max.dll and UiViewModels.dll. How can I call the latest Menu API (CuiMenu) in C#? Or is a completely new system used to manage menus in C# ?
Solved! Go to Solution.