如何说 XAML <按钮高度=“自动”/>在代码后面?
如何在后面的代码中设置 Height="*"
和 Height="Auto"
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在后面的代码中设置 Height="*"
和 Height="Auto"
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
要在大多数控件上设置
Height = "Auto"
,您需要使用double.NaN
指定该值。示例:
设置
Width/Height = "*"
(情况略有不同,因为它仅适用于选定的几个元素(ColumnDefinition
和RowDefinition
> 例如,Width
/Height
值的类型为GridLength
,而不是double
。示例(更多内容在 此 MSDN 页面:
For setting
Height = "Auto"
on most controls, you want to assign the value withdouble.NaN
.Example:
Setting
Width/Height = "*"
( is a slightly different matter, since it only applies to a select few elements (ColumnDefinition
andRowDefinition
for example). The type of theWidth
/Height
value isGridLength
, rather thandouble
.Example (more are given on this MSDN page: