Habanero.Faces.Win.FormExceptionNotifier.CollapsibleExceptionNotifyForm.GetSimpleMessage C# (CSharp) Method

GetSimpleMessage() private static method

Creates the text box that shows the error summary at the top
private static GetSimpleMessage ( string message ) : ITextBox
message string
return ITextBox
            private static ITextBox GetSimpleMessage(string message)
            {
                ITextBox messageTextBox = _controlFactory.CreateTextBox();
                messageTextBox.Text = message;
                messageTextBox.Multiline = true;
                return messageTextBox;
            }