Answer the question
In order to leave comments, you need to log in
Why hotkeys stop working and how to fix it?
There is a .NET form that is called in 3ds max.
Sometimes, after opening the TollStripSplitButton dropdown list in 3ds max, hotkeys stop working.
It is treated by right-clicking (it looks like you need to open any other menu) either in the 3ds max window itself, or on the form itself.
Here is such a mystic.
Any ideas how to fix the situation?
Thank you.
Answer the question
In order to leave comments, you need to log in
So far I have decided with a similar crutch
public class ToolStripSplitButtonEx : ToolStripSplitButton
{
protected override void OnDropDownClosed(EventArgs e)
{
base.OnDropDownClosed(e);
if (DropDown != null)
DropDown.Close();
}
}
Hotkeys can stop due to a change in layout or due to the focus moving to another window.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question