Catel.Windows.DataWindowButton.DataWindowButton C# (CSharp) Method

DataWindowButton() private method

private DataWindowButton ( string text, System.Action execute, Func canExecute = null ) : System
text string
execute System.Action
canExecute Func
return System
        public DataWindowButton(string text, Action execute, Func<bool> canExecute = null)
            : this(text, new Command(execute, canExecute))
        { }

Same methods

DataWindowButton::DataWindowButton ( string text, ICommand command ) : System
DataWindowButton::DataWindowButton ( string text, ICommand command, string contentBindingPath = null, IValueConverter contentValueConverter = null, string visibilityBindingPath = null, IValueConverter visibilityValueConverter = null ) : System
DataWindowButton::DataWindowButton ( string text, string commandBindingPath ) : System
DataWindowButton::DataWindowButton ( string text, string commandBindingPath, string contentBindingPath = null, IValueConverter contentValueConverter = null, string visibilityBindingPath = null, IValueConverter visibilityValueConverter = null ) : System