可能重复:
Getting Actual Size of UserControl before rendering
How to override MeasureOverride to find the size of ItemsControl
我曾经问question之前基本归结为:
如何获得具有动态添加项目的ItemsControl的UserControl的实际大小?
答案 0 :(得分:0)
不确定,但请查看ActualHeight
和ActualWidth
属性:
http://msdn.microsoft.com/en-us/library/system.windows.frameworkelement.actualheight.aspx
答案 1 :(得分:0)
我总是等待控件的sizechanged事件,我需要ActualHeight
和ActualWidth
属性。
因此,将此事件连接到您的用户控件,然后在e.NewSize
上的处理程序中做出反应。