Position
虽然 PanelPosition
可用于将组件放置在容器的角落,但 Position
枚举不太精确,主要用于边缘和句柄。
¥While PanelPosition
can be used to place a component in the
corners of a container, the Position
enum is less precise and used primarily
in relation to edges and handles.
export enum Position {
Left = 'left',
Top = 'top',
Right = 'right',
Bottom = 'bottom',
}
Last updated on