We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a040e70 commit c0b19b7Copy full SHA for c0b19b7
1 file changed
BlueM.Opt/Main/SolutionDialog.vb
@@ -80,8 +80,7 @@ Partial Public Class SolutionDialog
80
For Each feature As ObjectiveFunction In Me.mProblem.List_ObjectiveFunctions
81
column = New DataGridViewTextBoxColumn With {
82
.Name = feature.Description,
83
- .ReadOnly = True,
84
- .DefaultCellStyle = cellstyle.Clone()
+ .ReadOnly = True
85
}
86
If (feature.isPrimObjective) Then
87
cellstyle.BackColor = Color.LightGreen
@@ -92,6 +91,7 @@ Partial Public Class SolutionDialog
92
91
column.HeaderText = feature.Description
93
column.HeaderCell.ToolTipText = "Secondary objective function"
94
End If
+ column.DefaultCellStyle = cellstyle.Clone()
95
Me.DataGridView1.Columns.Add(column)
96
Next
97
0 commit comments