Standardwert markieren

- Markierung wird beim Start manchmal nicht angezeigt
- Darum noch einmal in 'SetBasicValues' setzen
This commit is contained in:
Eugen Höglinger 2023-01-12 13:21:51 +01:00
parent 898f78095f
commit 1fa697af03
23 changed files with 5 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -454,6 +454,11 @@ namespace Eugen.ESystem.Windows.Forms
LoadXML(); LoadXML();
} }
} }
if (StandardValue != 0)
{
dataGridViewValues.Rows[StandardValue - 1].DefaultCellStyle.ForeColor = Color.LightSeaGreen; //Standardwert noch einmal markiere, weil die Markierung manchmal zurückgesetzt wird
}
} }
private void SetStandard() private void SetStandard()