/// <summary> /// Constructor. /// </summary> public Variable(SelectVariables _parent, String k, String v, Color c) { // Set variables ParentDialog = _parent; Key = k; Value = v; BackgroundColor = DefaultColor = c; // Set height MinHeight = SelectVariables.ROW_HEIGHT; // Horizontal resize true ExpandHorizontal = true; // No margins Margin = 0; // Init component _initializeComponents(); }