Peter17
Peter17

Reputation: 3092

Width property in the XAML

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

Answers (3)

cordellcp3
cordellcp3

Reputation: 3623

you can check the defined values right here --> http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.width.aspx

Upvotes: 1

Zebi
Zebi

Reputation: 8882

The grid row definition accepts *, too (which means take as much as you can).

Upvotes: 0

Paweł Smejda
Paweł Smejda

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

Related Questions