尝试将网格的高度/宽度绑定到视图模型
本文关键字:绑定 视图 模型 网格 高度 | 更新日期: 2023-09-27 18:31:57
所以我在视框中有一个网格。现在,网格可以随视框正常缩放。但是,我需要知道 ViewModel 中网格的高度和宽度。但是,它似乎从未将高度设置为任何东西?
<Viewbox VerticalAlignment="Top" Margin="5,20,5,0">
<Border BorderThickness="6" BorderBrush="Black" CornerRadius="2">
<Grid MinHeight="300" MinWidth="400" Height="{Binding Height, Mode=TwoWay}" Width="{Binding Width, Mode=TwoWay}" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Column="0" >
<ItemsControl ItemsSource="{Binding Viewers}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<Canvas />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemContainerStyle>
<Style>
<Setter Property="Canvas.Left" Value="{Binding X}" />
<Setter Property="Canvas.Top" Value="{Binding Y}"/>
</Style>
</ItemsControl.ItemContainerStyle>
</ItemsControl>
</Grid>
</Border>
</Viewbox>
在我的视图中模型:
private int _height;
public int Height
{
get
{
return _height;
}
set
{
_height = value;
OnPropertyChanged("Height");
}
}
private int _width;
public int Width
{
get
{
return _width;
}
set
{
_width = value;
OnPropertyChanged("Width");
}
}
有什么想法吗?
您需要
对 ActualWidth
/Height
进行OneWayToSource
绑定,因为这些属性是只读的,到目前为止,我已经看到了任何好的解决方案,因为如果在只读依赖项属性上设置,WPF 会直接拒绝绑定。