Here are the examples of the csharp api class System.Windows.Forms.Control.OnMarginChanged(System.EventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
2 Examples
0
1. Example
View licenseprotected override void OnMarginChanged(EventArgs e) { base.OnMarginChanged(e); UpdateRectanglePositioning(); Invalidate(); }
0
2. Example
View licenseprotected override void OnMarginChanged(EventArgs e) { UpdateRowHeight(); PerformLayout(); base.OnMarginChanged(e); }