InputMenu QML Type
A context menu for text input operations. More...
| Import Statement: | import FluentUI.Controls 1.0 |
Properties
- target : Item
Detailed Description
InputMenu provides a standard context menu with cut, copy, paste, and delete operations for text input controls. It is automatically shown when the user right-clicks on the associated target item.
Usage Example
import QtQuick import FluentUI.Controls TextField { id: textInput InputMenu { target: textInput } }
Property Documentation
target : Item
The text input Item that this context menu serves. The menu appears when the user right-clicks on the target and provides standard edit operations.