Dear All,
I am using dotspatial.controls.dll for desktop GIS application development. I have written
an event handler as follows.But the handler never gets called. Why? How to call the handler?Thanks for your reply.
public Form1()
I am using dotspatial.controls.dll for desktop GIS application development. I have written
an event handler as follows.But the handler never gets called. Why? How to call the handler?Thanks for your reply.
public Form1()
{
map1.FinishedRefresh += new EventHandler(map1_FinishedRefresh);
}
void map1_FinishedRefresh(object sender, EventArgs e)
{
int i=0;
}