Click here to Skip to main content
15,899,126 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am currently working on websites i need to finding to handle a close event of popup window on popup page only.and this popup page is open on multiple places.how to handle a close event in one place

plz suggest me
Posted
Comments
senguptaamlan 1-Jul-11 8:28am    
please, give an example to visualize the issue...you question is not quite clear...

1 solution

->I think I can help you a little bit.
->Try this code.
private void run_MouseEnter(object sender, MouseEventArgs e)
{
     if(popLink.IsOpen == false)
          popLink.IsOpen = true;
     else
          popLink.IsOpen = false;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900