Вопрос

I want to create a Resharper ContextAction which takes a string from the user. How can I create a box with an input field whose entered value can be processed inside the ExecutePsiTransation method?

Это было полезно?

Решение

Just use standard WPF/Windows forms dialogs. For Windows forms use Show/ShowDialog overload that takes IWin32Window instance. For WPF see IWin32Window in WPF . Get instance of IWin32Window via Shell.Instance.GetComponent().MainWindow . And do it not from ExecutePsiTransation, but from ExecuteBeforeProgressAndTransaction method.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top