I have an external application that provides an event - StkQuit. I subscribe to this event in a static class that handles all communication between my application and the external application. I would like to subscribe to the StkQuit event using another handler that sits on my form class. This handler will inform the user that the external application has been closed. To keep a certain level of orthogonality, I would like to have a generic method in the static class called 'SubscribeToStkQuit' that accepts a delegate as a parameter and subscribes that delegate (referring to the handler on my form class) to the StkQuit event. Is this possible? Is this the most elegant/simplistic way to achieve such functionality?
Form Class
public delegate void dForceClose();
public void SubscribeToStkQuit(dForceClose forceClose)
{
UtilStk.SubscribeToStkQuit(forceClose = new dForceClose(ForceClose));
}
private void ForceClose()
{
MessageBox.Show("TEST");
}
Static Class
private static AgUiApplication _stkUiApplication;
public static void SubscribeToStkQuit(Delegate subscribeHandler)
{
_stkUiApplication.OnQuit += subscribeHandler;
}
[Update]
As per comments I have updated the code like so:
public delegate void dForceClose(object sender, EventArgs e);
public void SubscribeToStkQuit(dForceClose forceClose)
{
UtilStk.SubscribeToStkQuit(forceClose = new dForceClose(ForceClose));
}
private void ForceClose(object sender, Eventargs e)
{
MessageBox.Show("TEST");
}
I am still getting the cast exception. Any ideas ??
[Update]
I'm still having problems with this. In my static class I have a handler already for disposing when OnQuit fires. Like so:
private static AgUiApplication _stkUiApplication;
public static bool CheckThatStkIsAvailable()
{
object stkApplication = null;
try
{
stkApplication = Marshal.GetActiveObject(_stkProgId);
_stkUiApplication = stkApplication as AgUiApplication;
_stkUiApplication.OnQuit += StkQuit;
return true;
}
catch (Exception)
{
return false;
}
}
private static void StkQuit()
{
_stkUiApplication.OnQuit -= StkQuit;
Marshal.FinalReleaseComObject(_stkUiApplication);
Marshal.FinalReleaseComObject(_stkRoot);
}
This works fine. So I thought I would create a public property for _stkUiApplication and subscribe from the form class in the same manner. Like so:
Static Class
public static AgUiApplication StkUiApplication
{
get { return _stkUiApplication; }
}
Form Class
private void SubscribeToStkQuit()
{
UtilStk.StkUiApplication.OnQuit += StkQuit;
}
private void StkQuit()
{
MessageBox("TEST");
}
This still doesn't seem to work. Using "object sender, Eventargs e" is confusing me.. here is the event delegate signature:
public delegate void IAgUiApplicationEvents_OnQuitEventHandler();
I'm going to read up on C# events, handling and delegates. The whole thing confuses me.
WulfgarPro
_stkUiApplication.OnQuit += subscribeHandler;throws "Cannot implicitly convert type 'System.Delegate' to 'AGI.Ui.Application.IAgUiApplicationEvents_OnQuitEventHandler'..." So I cast the delegate to the aforementioned type and I get a runtime exception "Unable to cast object of type dForceClose to type AGI.Ui.Application.IAgUiApplicationEvents_OnQuitEventHandler". Any ideas? – wulfgar.pro Jan 27 '11 at 13:40