认真看了下你的问题,既然是弹在你指定的位置,那就是刚开始建立了
HWND CreateWindow(
LPCTSTR lpClassName,
// registered class name
LPCTSTR lpWindowName, // window name
DWORD dwStyle,
// window style
int x,
// horizontal position of window
以电脑左上角为坐标原点,x为横坐标,y为纵坐标。
int y,
// vertical position of window
int nWidth,
// window width
int nHeight,
这两个就是窗口的宽度和高度
int nHeight,
// window height
HWND hWndParent,
// handle to parent or owner window
HMENU hMenu,
// menu handle or child identifier
HINSTANCE hInstance,
// handle to application instance
LPVOID lpParam
// window-creation data);