FireMonkey 并显示所有者表单的模式对话框中心
我在所有者表单中心显示模式对话框时遇到问题。我用于显示模式对话框的代码是:
procedure TfrmMain.btnOpenSettingsClick(Sender: TObject);
var
sdSettingsDialog: TdlgSettings;
begin
sdSettingsDialog := TdlgSettings.Create(Self);
sdSettingsDialog.Position := TFormPosition.poOwnerFormCenter;
try
sdSettingsDialog.ShowModal;
finally
sdSettingsDialog.Free;
end;
end;
也尝试更改设计器中的 Position 属性,但它似乎没有使对话框居中。
你能告诉我这里出了什么问题吗?
I have a problem with displaying modal dialog in center of the owner form. My code for showing modal dialog is:
procedure TfrmMain.btnOpenSettingsClick(Sender: TObject);
var
sdSettingsDialog: TdlgSettings;
begin
sdSettingsDialog := TdlgSettings.Create(Self);
sdSettingsDialog.Position := TFormPosition.poOwnerFormCenter;
try
sdSettingsDialog.ShowModal;
finally
sdSettingsDialog.Free;
end;
end;
Tried to change Position property in designer too, but it doesn't seems to center the dialog.
Can you tell me what's wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FireMonkey 中的位置不是由 ShowModal 实现的。
使用下面的类帮助器,您可以在调用 ShowModal 之前使用: sdSettingsDialog.UpdateFormPosition:
Position is not implemented in FireMonkey by ShowModal.
With the class helper below you can use: sdSettingsDialog.UpdateFormPosition before you call ShowModal: