description |
---|
Chip component for Universal Apps. |
Chips are compact elements that represent an input, attribute, or action.
Chips allow users to enter information, make selections, filter content, or trigger actions.
While included here as a standalone component, the most common use will be in some form of input, so some of the behavior demonstrated here is not shown in context.
New-UDChip -Label 'Basic'
New-UDChip -Label 'Basic' -Icon (New-UDIcon -Icon 'user')
Shows a toast when the chip is clicked.
New-UDChip -Label 'OnClick' -OnClick {
Show-UDToast -Message 'Hello!'
}
New-UDChip -Label 'OnDelete' -OnClick {
Show-UDToast -Message 'Goodbye!'
}