如何让 Delphi 2009 默认在第二个显示器中打开我的应用程序?
调试时,我总是希望 Delphi 在第二个监视器中打开我的应用程序,但它总是在第一个监视器中打开,我知道我可以在关闭之前保存应用程序放置,但我希望它在调试模式下始终在第二个监视器中打开。
有没有办法配置 delphi 2009 来做到这一点?
When debugging I always want Delphi to open my application in the second monitor but it always open in the first one, I know I can save the application placement before closing but I want it to always open in the second monitor when in debug mode.
Is there some way to configure delphi 2009 to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Delphi没有他的功能。
我所做的是将代码添加到主窗体的 OnCreate 处理程序,如果 Delphi-Debugger 连接到应用程序,则将窗体移动到第二个监视器。
Delphi doesn't have his feature.
What I do is to add code to the OnCreate handler of the main form that moves the form to the second monitor if the Delphi-Debugger is attached to the application.