Logo FluentUI

DropDownPopup QML Type

一个自定义弹出窗口组件,用于在指定目标下方或上方显示内容。. More...

Import Statement: import FluentUI.Controls 1.0

Properties

Methods

  • void popup(Item target)

Detailed Description

DropDownPopup 是一个自定义的弹出窗口组件,允许在指定的目标组件的上方或下方显示内容。该组件支持动画过渡效果,可以根据窗口位置智能调整显示位置。

示例用法:

 DropDownPopup {
     content: Component {
         // 在此处定义要弹出的内容
     }
 }

Property Documentation

animationEnabled : bool

是否启用弹出窗口的动画效果。默认值为 true。


content : Component

弹出窗口中显示的内容组件。


offsetY : int

弹出窗口与目标组件之间的垂直偏移量。默认值为 3。


Method Documentation

在指定的目标组件下方或上方弹出窗口。如果目标组件的下方有足够空间,窗口会在目标的下方弹出;否则,窗口会在目标的上方弹出。

target 要定位的目标组件。