Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 WPF 控件高度来计算我的下一个控件边距顶部,但是当我尝试使用 获取控件高度时textbox1.height,这是返回“自动”而不是数字
textbox1.height
当设置为“自动”时,我能做些什么来获得控制高度?
你应该试试这个:
textBox1.ActualHeight
备注(@Viv)
只需确保在查询 textBox1.ActualHeight 时,在加载控件后执行此操作。如果您在正确设置之前检查 ActualHeight,您将获得 0.0