ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

c#-使用IValueConverter动态加载图像源

2019-10-31 08:05:24  阅读:348  来源: 互联网

标签:imagesource ivalueconverter imultivalueconverter wpf c


我在使用IValueconverter时遇到问题,并动态加载了行网格图像:

public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{

    string Type = (string)value;
    Uri uri;
    try
    {
        uri = new Uri("/XConsole;component/Images/" + Type + ".png", UriKind.Relative);
        return new System.Windows.Media.Imaging.BitmapImage(uri) { CacheOption = BitmapCacheOption.None };
    }
    catch (Exception e)
    {
        //donothing
    }
    uri = new Uri("/XConsole;component/Images/Type_SYSTEM.png", UriKind.Relative);
    return new System.Windows.Media.Imaging.BitmapImage(uri) { CacheOption = BitmapCacheOption.None };

}

我想传递给对象的“类型”转换器并加载不同的图像:

 <Image Grid.Column="0"  Width="25" Height="25" Margin="2,0" Source="{Binding Path=Type, Converter={StaticResource imageConverter}}" >

但是出了点问题,因为没有照片加载!

如果我静态加载,也可以:

 <Image Grid.Column="0"  Width="25" Height="25" Margin="2,0" Source="/XconsoleTest;component/Images/Type_DB.png" >

我在UserControl.Resources中加载了转换器

<UserControl.Resources>
    <converters:ImageConverter x:Key="imageConverter"/>
</UserControl.Resources>

帮我!!

解决方法:

如果用代码创建URI,则必须编写完整的Pack URI,包括pack:// application:,,, part.在XAML中,这不是必需的,因为它是由字符串到ImageSource TypeConverter自动添加的.

var type = (string)value;
var uri = new Uri("pack://application:,,,/XConsole;component/Images/" + type + ".png");

请注意,上面的代码示例使用小写的类型标识符而不是Type,以避免与Type类混淆.

标签:imagesource,ivalueconverter,imultivalueconverter,wpf,c
来源: https://codeday.me/bug/20191031/1974427.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有