ButtonInfo Class
In This Article
Represents a button for a button editor.
Namespace: DevExpress.Xpf.Editors
Assembly: DevExpress.Xpf.Core.v14.2.dll
#Declaration
#Remarks
The ButtonInfo class implements the functionality of an individual button that can be displayed within button editors (e.g. ButtonEdit, DateEdit, etc.).
#Examples
This example shows how to create a ButtonEdit with the Clear button that clears the editor's value.
private void ButtonInfo_Click(object sender, RoutedEventArgs e) {
buttonEdit.EditValue = string.Empty;
}
#Inheritance
See Also