在 WPF 中获取最大化时的窗口大小
我正在寻找一种方法来获取最大化 WPF 窗口的宽度属性。
有什么想法如何获得绝对值吗?
多谢。
i search for a way to get the Width-Property of an Maximized WPF Window.
Any Ideas how can i get the absolute value?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
只需使用
ActualWidth
属性即可。What about this:
Just use the
ActualWidth
property.ActualWidth 将为您提供最大化状态下的宽度。
ActualWidth will give you the width also in maximized state.
使用
ActualWidth
,而不是Width
。Use
ActualWidth
, instead ofWidth
.