Is it possible to perform a specific action after the resize event (of the user control), for example when mouse button is released? I need to manually resize an inner control and doing it on every single firing of the event would be quite, hmm, inefficient...
相关问题
- How to use Control.FromHandle?
- IPAddress.[Try]Parse parses 192.168 to 192.0.0.168
- Stop child process when parent process stops
- Fire resize event once not based on timing
- How do I bind a DataGridViewComboBoxColumn to a pr
相关文章
- What does it means in C# : using -= operator by ev
- How are custom broadcast events implemented in Jav
- Sort TreeView Automatically Upon Adding Nodes
- Where does this quality loss on Images come from?
- Missing partial modifier on declaration of type
- PropertyGrid - Possible to have a file/directory s
- Programming a touch screen application with SWING
- Why do base Windows Forms form class with generic
You can fake a local ResizeEnd like this:
The interval can be modified. The higher it is the more delay after the last resize event it will be.
Just use the
ResizeEnd
event:From MSDN:
Maybe you can use the SizeChanged Event. But i don´t know how often or when it´s called during resizing.