0

我有两个需要绑定的属性。一个是 Value,它是 UserControl 的属性,第二个是来自图像元素的属性。图像元素在 Window 内。该窗口在 (UserControl) 后面的代码中得到验证。

我需要添加什么来启用图像 src 和属性值之间的正确绑定。代码如下所示。

<UserControl x:Class="nnnn">

<UserControl.Resources>
    <propSheet:BitmapConverter x:Key="bitmapConverter" />

    <Window x:Key="imagePopup"
            Width="640"
            Height="480">
        <Grid Background="LightGray">
            <Image Grid.Row="0" Source="{Binding Path=Value, Converter={StaticResource bitmapConverter}}" />

            <TextBlock Text="{Binding Path=Value}"></TextBlock>

            <Button Grid.Row="1"
                    Width="25"
                    HorizontalAlignment="Left"
                    VerticalAlignment="Bottom"
                    Click="OpenFile_Click">
                ...
            </Button>
        </Grid>
    </Window>

</UserControl.Resources>

<Grid>
    <Button Click="ViewImage_Click">View Image</Button>

</Grid>

4

1 回答 1

1

在显示之前,您必须将 Window 的DataContext属性设置为 UserControl 实例:

private void ViewImage_Click(object sender, RoutedEventArgs e)
{
    var window = Resources["imagePopup"] as Window;
    window.DataContext = this; // the UserControl
    window.Show();
}
于 2013-05-07T17:31:28.693 回答