作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个MDI子窗体,该窗体在打开时不会立即最大化。
我可以看到它上的数据网格已创建,然后表单被最大化
我使用以下构造函数创建表单。
Properties:
FormStyle = fsMDIChild
Position = poDefaultPosOnly
WindowState = wsMaximized
constructor TfrmJsContacts.Create(aOwner: TComponent);
begin
WindowState := wsMaximized;
inherited Create(aOwner);
TimerDelay.Enabled := True;
end;
最佳答案
MDIChild弹出窗口带有一些动画。
如果MDIChild.Position设置为
poDefaultPosOnly
poDefaultSizeOnly
poScreenCenter
poDesktopCenter
poMainFormCenter
poOwnerFormCenter
顶部和左侧是在创建时计算的
现在假设Top
= 300和Left
= 400
在on Show
的MDIChild现在是MDIParent的一部分,因此Top
= 300和Left
= 400现在位于MDIParent中。
表示MDIChild
的左上角现在位于MDIParent
表单的中间。
使用wsMaximized
时,动画从右中到左上显示。
现在使用位置
poDesigned
poDefault
并且将“顶部”和“左侧”设置为0
时,将不再显示动画。
constructor TfrmJsContacts.Create(aOwner: TComponent);
begin
Top := 0;
Left := 0;
WindowState := wsMaximized;
inherited Create(aOwner);
....
end;
frmJsContacts
时,请查看“对象检查器”。
WindowState
设置为
wsMaximized
WindowState
设置为
wsNormal
。
WindowState := wsMaximized
移到
inherited Create(aOwner)
以下。
constructor TfrmJsContacts.Create(aOwner: TComponent);
begin
Top := 0;
Left := 0;
inherited Create(aOwner);
WindowState := wsMaximized;
....
end;
关于forms - MDI子项在创建时未最大化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30327911/
在我们的数据库表上,我们使用两个唯一的非聚集索引来创建跨四个字段的唯一约束。我们使用两个,因为其中一个字段 ZipCode 是一个可为空的字段。如果表中存在一条包含 ZipCode 的 null 条目
我刚刚开始学习 Rails 3 教程,以便对框架有一点熟悉,但我在生成 schema.rb 时遇到了问题。我的操作系统是 Windows 7 x64、Ruby 1.9.2、MySQL2 gem 0.2
我是一名优秀的程序员,十分优秀!