不行<br>choosefont的弹出窗口句柄我该怎么获得呢?<br>以颜色窗口为例吧<br>function TProDialog.GetColorDialog(cColor:TColor;out NewColor:TColor): Boolean;<br>var<br> cc:TChooseColor;<br>begin<br> Result := False;<br> cc.lStructSize := SizeOf(TChooseColor);<br> cc.hWndOwner := Application.Handle;<br> cc.Flags := CC_FULLOPEN or CC_RGBINIT;<br> cc.rgbResult := cColor;<br> if ChooseColor(cc) then //弹出窗口<br> begin<br> NewColor := cc.rgbResult;<br> Result := True;<br> end;<br>end;<br>我该如何使用SetWindowPos呢?好像不好设置吧