Feedback

C# - Threadsicheres Zuweisen von Control-Eigenschaften

Veröffentlicht von am 4/16/2008
(6 Bewertungen)
Wenn aus einem anderen Thread eine Eigenschaft in einem Form-Control geändert werden soll, so muss man mit Callbacks und Invoke arbeiten.
Mit diesem generischen Delegate und der dazugehörigen Funktion, kann man eine Menge Code sparen.
private delegate void SetPropertyValueCallback<ControlType, PropertyType>(ControlType control, string propertyName, PropertyType value) where ControlType : Control;

private void SetPropertyThreadSafe<ControlType, PropertyType>(ControlType control, string propertyName, PropertyType value) where ControlType : Control
{
	if (control.InvokeRequired)
	{
		SetPropertyValueCallback<ControlType, PropertyType> cb = new SetPropertyValueCallback<ControlType, PropertyType>(SetPropertyThreadSafe);
		control.Invoke(cb, new object[]{ control, propertyName, value });
	}
	else
	{
		System.Reflection.PropertyInfo property = control.GetType().GetProperty(propertyName);
		property.SetValue(control, value, null);
	}
}

//Anwendung
SetPropertyThreadSafe<ProgressBar, int>(pbState, "Value", (int)syncState.PercentFinished * 100); 
SetPropertyThreadSafe<Label, string>(lblState, "Text", syncMessage);

3 Kommentare zum Snippet

Tim Hartwig schrieb am 4/16/2008:
Sehr schön, kann ich gebrauchen. Danke!
Ilja Smorguner schrieb am 5/6/2008:
Sehr gut!!! Danke!
Rainer Hilmer schrieb am 8/25/2008:
Perfekt. Die Anwendung geht sogar noch einfacher:
SetControlProperty(pbState, "Value", (int)syncState.PercentFinished);
SetControlProperty(lblState, "Text", syncState.SyncMessage);
 

Logge dich ein, um hier zu kommentieren!