A very weird situation…
Using the debugger in VS2010 I can look up a property MinSize of a RowDefinition which is defined on it’s base class DefinitionBase. I can also ask for the value of this property in the immediate window. See the attached screendump.
BUT, when trying to use this property in code it gives an error stating:
'System.Windows.Controls.RowDefinition' does not contain a definition for 'MinSize' and no extension method 'MinSize' accepting a first argument of type 'System.Windows.Controls.RowDefinition' could be found (are you missing a using directive or an assembly reference?)
Also looking in MSDN RowDefinition Class there is no such property as MinSize (also not on the DefinitionBase).
I feel pretty confused. Any help would be appreciated.

MinSizeappears to beinternalfrom here (notice the yellow icon in the lower left on top of the property icon), don’t you wantMinHeight?(You do not see properties in the IDE that you cannot get or set, it would just be clutter, so you normally just see
publicones and if you inherit from some class you also get theprotectedmembers)