を中央に配置するには、関数をInputBox
使用して処理を試すことができます。Win32
このコードはあなたのために働きます:
[DllImport("user32")]
private static extern int SetWindowPos(IntPtr hwnd, IntPtr afterHwnd, int x, int y, int cx, int cy, int flag);
[DllImport("user32")]
private static extern IntPtr FindWindow(string className, string caption);
[DllImport("user32")]
private static extern int GetWindowRect(IntPtr hwnd, out RECT rect);
//RECT structure
public struct RECT {
public int left, top, right, bottom;
}
public void ShowCenteredInputBox(string prompt, string title, string defaultReponse){
BeginInvoke((Action)(() => {
while (true) {
IntPtr hwnd = FindWindow(null, title + "\n\n\n");//this is just a trick to identify your InputBox from other window with the same caption
if (hwnd != IntPtr.Zero) {
RECT rect;
GetWindowRect(hwnd, out rect);
int w = rect.right - rect.left;
int h = rect.bottom - rect.top;
int x = Left + (Width - w) / 2;
int y = Top + (Height - h) / 2;
SetWindowPos(hwnd, IntPtr.Zero, x, y, w, h, 0x40);//SWP_SHOWWINDOW = 0x40
break;
}
};
}));
Microsoft.VisualBasic.Interaction.InputBox(prompt, title + "\n\n\n", defaultResponse,0,0);
}
もちろん、ボタン、ラベル、TextBox の位置を変更することもできますInputBox
が、これは非常に厄介でトリッキーであり、単純ではないと言えます。推奨される解決策は、 で新しい標準フォームを作成しSystem.Windows.Forms.Form
、それにコントロールを追加して、メソッドを使用しShowDialog()
てフォームを表示することです。. もちろん、より多くのコードを実行する必要がありますが、ルック アンド フィールとその動作を完全にカスタマイズできます。