namespace ElectronNET.API.Entities
{
///
///
///
public enum ThumbarButtonFlag
{
///
/// The button is active and available to the user.
///
enabled,
///
/// The button is disabled.It is present, but has a visual state indicating it will not respond to user action.
///
disabled,
///
/// When the button is clicked, the thumbnail window closes immediately.
///
dismissonclick,
///
/// Do not draw a button border, use only the image.
///
nobackground,
///
/// The button is not shown to the user.
///
hidden,
///
/// The button is enabled but not interactive; no pressed button state is drawn.This value is intended for instances where the button is used in a notification.
///
noninteractive
}
}