adding event handlers on dynamically created WPF controls -
i have wpf application , using dynamic wpf controls. how add event button or image onresize?
thanks
you hook event handler event of button or image using += syntax:
 image image = new image();  image.sizechanged += (s, e) => { /* handle event */ }; 
Comments
Post a Comment