クラスに何人かの代表者が必要です。
インターフェイスを使用して、これらのデリゲートを設定するように「通知」します。
方法?
私のクラスは次のようになります:
public class ClsPictures : myInterface
{
// Implementing the IProcess interface
public event UpdateStatusEventHandler UpdateStatusText;
public delegate void UpdateStatusEventHandler(string Status);
public event StartedEventHandler Started;
public delegate void StartedEventHandler();
}
これらのデリゲートを強制するインターフェイスが必要です。
public interface myInterface
{
// ?????
}