在WPF中修改Image标记中的图像

时间:2011-06-20 19:56:42

标签: c# wpf image readonly

我有一个表格,其中我显示了一堆图像。我希望能够通过另一个可执行文件(如paint)修改此图像,并在我退出时刷新图像(例如通过按钮)。

当我尝试将图像保存在绘画中时,它告诉我图像受到保护,这是由于表单以某种方式链接到图像。

有没有办法让这项工作?知道如何绕过这个问题吗?

感谢。

编辑:这是我使用的结构(重叠简化)

        <ListView Style="{StaticResource BaseListView}" x:Name="LstMoulures" Grid.Column="0" Background="#00000000" SelectionMode="Single" IsTextSearchEnabled="False" ScrollViewer.VerticalScrollBarVisibility="Auto">
           <ListView.ItemTemplate>
                <DataTemplate>
                    <Border BorderBrush="White" Margin="1,1,1,1" BorderThickness="2,2,2,2" CornerRadius="4">
                        <StackPanel Orientation="Horizontal" Margin="5,0,0,5" Height="200">
                            <Image x:Name="ImgPicture" Width="220" Height="195" Margin="2,5,2,2" GotFocus="ImgPicture_GotFocus" MouseLeftButtonDown="ImgPicture_MouseLeftButtonDown" MouseEnter="ImgPicture_MouseEnter" MouseLeave="ImgPicture_MouseLeave">
                                <Image.Source>
                                    <BitmapImage UriSource="{Binding DessinSource}" CacheOption="OnLoad" />
                                </Image.Source>
                            </Image>
                         </StackPanel>
                    </Border>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>

1 个答案:

答案 0 :(得分:0)

<Image>
    <Image.Source>
        <BitmapImage UriSource="test.jpg" CacheOption="OnLoad" />
    </Image.Source>
</Image>

您也可以阅读该文件并将其重写为MemoryStream对象:

MemoryStream ms = new MemoryStream();
BitmapImage bi = new BitmapImage();

byte[] bytArray = File.ReadAllBytes(@"test.jpg");
ms.Write(bytArray, 0, bytArray.Length);
ms.Position = 0;
bi.BeginInit();
bi.StreamSource = ms;
bi.EndInit();
image.Source = bi;

要监控图像更改并刷新图像,您可以使用FileSystemWatcher