我有启动器应用程序,它包含无边框的完整形式的FlowLayoutPanel,并加载它的子FlowLayoutPanels的快捷方式。表格应始终以屏幕为中心,因此def indexof(predicate):
. as $in
| length as $len
| def _indexof:
if . >= $len then null
elif ($in[.] | predicate) then .
else . + 1 | _indexof
end;
0 | _indexof;
事件使其居中。
我希望当用户从底部调整大小(ResizeEnd
增加)时,表单会自动从顶部调整大小(this.Bottom
增加)。
我尝试了以下方法(仅在调整大小以便在此处保存代码时才有效)。是的,它有效,但它的方式太多,内容上下跳跃。
this.Top
有没有更智能的方法来实现这种行为?