Reputation: 3092
What are possible values for Width property in the XAML. I know "Auto" or any number. Is there any other possibilities?
Upvotes: 0
Views: 542
Reputation: 3623
you can check the defined values right here --> http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.width.aspx
Upvotes: 1
Reputation: 8882
The grid row definition accepts *
, too (which means take as much as you can).
Upvotes: 0
Reputation: 2005
It can be:
-double
-qualifiedDouble
-Auto
For detail information go to: http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.width.aspx
Upvotes: 1