FirstFloor.ModernUI.Windows.Controls.ModernDialog.CreateExtraStyledDialogButton C# (CSharp) Method

CreateExtraStyledDialogButton() public method

public CreateExtraStyledDialogButton ( [ styleKey, string content, System.Action action, Func canExecute = null ) : System.Windows.Controls.Button
styleKey [
content string
action System.Action
canExecute Func
return System.Windows.Controls.Button
        public Button CreateExtraStyledDialogButton([Localizable(false)] string styleKey, string content, Action action, Func<bool> canExecute = null) {
            return CreateExtraStyledDialogButton(styleKey, content, new DelegateCommand(action, canExecute));
        }

Same methods

ModernDialog::CreateExtraStyledDialogButton ( string styleKey, string content, ICommand command ) : System.Windows.Controls.Button