private void EvaluateAbortButton() { _abortButton = new MetroDefaultButton { Text = @"Abort", Size = _buttonSize, Visible = false }; _abortButton.Click += AbortButton_Click; }
private void EvaluateIgnoreButton() { _ignoreButton = new MetroDefaultButton { Text = @"Ignore", Size = _buttonSize, Visible = false }; _ignoreButton.Click += IgnoreButton_Click; }
private void EvaluateOkeyButton() { _okButton = new MetroDefaultButton { Text = @"Ok", Size = _buttonSize, Visible = false }; _okButton.Click += OkButton_Click; }
private void EvaluateYesButton() { _yesButton = new MetroDefaultButton { Text = @"Yes", Size = _buttonSize, Visible = false }; _yesButton.Click += YesButton_Click; }
private void EvaluateNoButton() { _noButton = new MetroDefaultButton { Text = @"No", Size = _buttonSize, Visible = false }; _noButton.Click += NoButton_Click; }
private void EvaluateCancelButton() { _cancelButton = new MetroDefaultButton { Text = @"Cancel", Size = _buttonSize, Visible = false }; _cancelButton.Click += CancelButton_Click; }
private void EvaluateRetryButton() { _retryButton = new MetroDefaultButton { Text = @"Retry", Size = _buttonSize, Visible = false }; _retryButton.Click += RetryButton_Click; }