2 writes to styleProp
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (2)
127_rightStyle.styleProp = TypeDescriptor.GetProperties(_rightStyle.style)[isColumn ? "Width" : "Height"]; 131_leftStyle.styleProp = TypeDescriptor.GetProperties(_leftStyle.style)[isColumn ? "Width" : "Height"];
6 references to styleProp
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (6)
133Debug.Assert(_leftStyle.styleProp is not null && _rightStyle.styleProp is not null, "Couldn't find property descriptor for width or height"); 289float rightStyleSize = (float)_rightStyle.styleProp.GetValue(_rightStyle.style); 297float leftStyleSize = (float)_leftStyle.styleProp.GetValue(_leftStyle.style); 304_rightStyle.styleProp.SetValue(_rightStyle.style, newRightSize); 305_leftStyle.styleProp.SetValue(_leftStyle.style, newLeftSize);