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)
133
Debug.Assert(_leftStyle.
styleProp
is not null && _rightStyle.
styleProp
is not null, "Couldn't find property descriptor for width or height");
289
float rightStyleSize = (float)_rightStyle.
styleProp
.GetValue(_rightStyle.style);
297
float leftStyleSize = (float)_leftStyle.
styleProp
.GetValue(_leftStyle.style);
304
_rightStyle.
styleProp
.SetValue(_rightStyle.style, newRightSize);
305
_leftStyle.
styleProp
.SetValue(_leftStyle.style, newLeftSize);