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

GetBgBrush() private method

private GetBgBrush ( bool Selected ) : SolidBrush
Selected bool
return System.Drawing.SolidBrush
        private SolidBrush GetBgBrush(bool Selected)
        {
            SolidBrush bg = Selected ? new SolidBrush(SystemColors.Highlight) : new SolidBrush(lstMembers.BackColor);
            return bg;
        }