mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-18 15:15:48 +02:00
20 lines
476 B
C#
20 lines
476 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using TweetDuck.Core.Controls;
|
|
|
|
namespace TweetDuck.Core.Bridge{
|
|
sealed class CallbackBridge{
|
|
private readonly Control owner;
|
|
private readonly Action safeCallback;
|
|
|
|
public CallbackBridge(Control owner, Action safeCallback){
|
|
this.owner = owner;
|
|
this.safeCallback = safeCallback;
|
|
}
|
|
|
|
public void Trigger(){
|
|
owner.InvokeSafe(safeCallback);
|
|
}
|
|
}
|
|
}
|