first of all I am new to C #
I am trying to do something like this in a c # winforms application
when my application starts, the form will begin to collapse in the system tray. when I double click on it, it opens and sends a request to qpid broker to get some information. then the message is sent back and received in the listener in my application (I'm not sure if the code matters, but I will publish it anyway)
namespace MyApp
{
public class MyListener : IMessageListener
{
public void MessageTransfer(IMessage m)
{
}
}
}
what I'm trying to do is fill in the list, which in this form is with the message received in this function, but I donβt know how to contact this specific form from the MessageTransfer function
source
share