1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
public static void ExecuteThreadSafe(this Control control, Action action)
{
if (control.InvokeRequired)
{
control.Invoke(action);
}
else
{
action.Invoke();
}
}
//Beispiel:
comboBox.ExecuteThreadSafe(() => comboBox.Enabled = true);
comboBox.ExecuteThreadSafe(() =>
{
comboBox.Enabled = true;
comboBox.Items.Add("Threadsicheres");
comboBox.Items.Add("hinzufügen");
comboBox.Items.Add("von");
comboBox.Items.Add("Items");
});
|