VB .dll の InputBox を使用しています。表示するときは、影響を与えるコントロールに関連する特定の場所に配置したいと思います(邪魔にならないように)。したがって、InputBox を表示するためのこの擬似コードがあります (「selectionStart」は、MouseDown に割り当てられた Point です)。
int HeightOfInputBox = ? <- What is this value?
int XPos = selectionStart.X;
int YPos = selectionStart.Y - HeightOfInputBox;
Interaction.InputBox("Prompt", "Title", "DefaultResponse", XPos, YPos);
私の質問は: InputBox の高さは?