910209 - Where's ResizeEnd event?
hi
i need to know when resize ends in my Silverlight application. how can i do that?
ResizeEnd exists in a form application, but not in a Silverlight application. how can i resemble it?
1
Expert's answer
2012-11-12T05:44:40-0500
1. If you mean that user change Browser size than you cannot know when he stop resize. You can only handle SizeChanged event, like this private void UserControl_SizeChanged(object sender, SizeChangedEventArgs e) { if (e.PreviousSize.Width == 0 || e.PreviousSize.Height == 0) return;
2. If you mean that user change Control size than you can handle MouseLeftButtonDown/MouseLeftButtonUp event, like this: bool isInResizeMode = false; Point lastPos;
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!
Comments
Leave a comment