Alsing.Design.CollectionEditorGui.GetFgBrush C# (CSharp) Method

GetFgBrush() private method

private GetFgBrush ( bool Selected ) : SolidBrush
Selected bool
return System.Drawing.SolidBrush
        private SolidBrush GetFgBrush(bool Selected)
        {
            SolidBrush fg = Selected ? new SolidBrush(SystemColors.HighlightText) : new SolidBrush(lstMembers.ForeColor);
            return fg;
        }