O
O
Oleksandr2014-08-27 15:38:25
.NET
Oleksandr, 2014-08-27 15:38:25

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

2 answer(s)
O
Oleksandr, 2014-09-01
@Track77

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();
        }
    }

K
Konstantin Kitmanov, 2014-08-27
@k12th

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 question

Ask a Question

731 491 924 answers to any question