grid的网格里的元素,怎么按照网格大小来设置大小
Width="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorLevel=1,AncestorType={x:Type Grid}}, Path=ActualWidth }"
Height="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorLevel=1, AncestorType={x:Type Grid}}, Path=ActualHeight}"
上面的方式,只能获取到整个grid的实际宽高。
怎么样才能绑定到x行x列这个单元格的实际宽高呢?
[解决办法]
你不指定高度和宽度就行了