0

我有一个 ContentPresenter 内容,我刚刚从文件中加载了一个 bmp。我希望 bmp 出现在 ContentPresenter 中并利用缩放功能。

我拥有的代码(仅显示 bmp 文件的路径)是:

        BitmapImage bitmap = new BitmapImage();
        bitmap.BeginInit();
        bitmap.UriSource = new Uri(selectedFileName);
        bitmap.EndInit();
        Content = bitmap;
4

2 回答 2

1

如果您不想预加载图像,则必须在主窗口上创建一个依赖属性。您还必须使用WPF Pack URIs。XAML 和代码隐藏文件如下所示:

XAML:

<Window x:Class="TestWPFApp.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:TestWPFApp"
        Title="MainWindow" Height="550" Width="725">

    <Grid x:Name="MainGrid">
        <Grid.RowDefinitions>
            <RowDefinition></RowDefinition>
            <RowDefinition></RowDefinition>
        </Grid.RowDefinitions>
        <StackPanel Orientation="Horizontal" Grid.Row="0">
            <Label Content="Select Image" Width="100" Height="30" Margin="10,10,100,10"></Label>
            <ComboBox x:Name="cbImageSelect" Height="20" Width="400" SelectionChanged="ComboBox_SelectionChanged" />
        </StackPanel>
        <ContentPresenter x:Name="contentPresenter" Width="250" Height="250" Grid.Row="1" >
            <ContentPresenter.Content>
                <Image Source="{Binding ImageUri}" Width="220" Height="220">
                </Image>
            </ContentPresenter.Content>
        </ContentPresenter>
    </Grid>
</Window>

XAML.cs

using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;

namespace TestWPFApp
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {

        public MainWindow()
        {
            InitializeComponent();
            DataContext = this;
            cbImageSelect.ItemsSource = new List<string>() { "test1.bmp", "test2.bmp" };
        }

        public static readonly DependencyProperty ImageUriProperty = DependencyProperty.Register("ImageUri", typeof(string), typeof(MainWindow));

        public string ImageUri
        {
            get { return (string)GetValue(ImageUriProperty); }
            set { SetValue(ImageUriProperty, value); }
        }

        private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            ImageUri = "pack://application:,,,/" + ((sender as ComboBox).SelectedItem as string);
        }
    }
}

图像位置:test1.bmp 和 test2.bmp

在此处输入图像描述

test1.bmp 和 test2.bmp 的属性
在此处输入图像描述 在此处输入图像描述

于 2013-05-23T14:35:09.803 回答
0

AContentPresenter基本上做了两件事:直接显示一个元素,或者以 a 定义的方式显示数据(更多详细信息在MSDN 页面DataTemplate上的备注中)。不是元素,也没有与之关联的特定 DataTemplate,因此 ContentPresenter 回退到简单地显示它。BitmapImageToString

您可以创建一个Image元素并将内容直接设置给它,或者定义一个 DataTemplate 通过ContentTemplate或作为具有DataType.

内容模板:

<ContentPresenter>
    <ContentPresenter.ContentTemplate>
        <DataTemplate>
            <Image Source="{Binding}" />
        </DataTemplate>
    </ContentPresenter.ContentTemplate>
</ContentPresenter>

资源:

<Window.Resources>
    <DataTemplate DataType="{x:Type BitmapImage}">
        <Image Source="{Binding}" />
    </DataTemplate>
</Window.Resources>
于 2013-05-23T15:02:44.077 回答