XAML 中的宽度属性
XAML 中 Width 属性的可能值是什么。我知道“汽车”或任何数字。还有其他的可能性吗?
What are possible values for Width property in the XAML. I know "Auto" or any number. Is there any other possibilities?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它可以是:
-double
-qualifiedDouble
-Auto
有关详细信息,请访问:http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.width.aspx
It can be:
-double
-qualifiedDouble
-Auto
For detail information go to: http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.width.aspx
您可以在此处检查定义的值 --> http://msdn.microsoft.com/en-us /library/system.windows.frameworkelement.width.aspx
you can check the defined values right here --> http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.width.aspx
网格行定义也接受
*
(这意味着尽可能多地获取)。The grid row definition accepts
*
, too (which means take as much as you can).