我正在使用 VB .dll 中的 InputBox。当我显示它时,我想将它放在相对于它会产生影响的控件的特定位置(不碍事)。所以我有这个用于显示 InputBox 的伪代码(“selectionStart”是在 MouseDown 上分配的一个点):
int HeightOfInputBox = ? <- What is this value?
int XPos = selectionStart.X;
int YPos = selectionStart.Y - HeightOfInputBox;
Interaction.InputBox("Prompt", "Title", "DefaultResponse", XPos, YPos);
我的问题是:InputBox 的高度是多少?