gpt4 book ai didi

c# - 字典,WP8

转载 作者:可可西里 更新时间:2023-11-01 11:34:55 27 4
gpt4 key购买 nike

我正在尝试为 Windows Phone 8 创建一个键/值为字符串/图像的字典。

我了解字典的工作原理,但不确定我会为我的图像使用哪种类型。

基本上,我正在尝试创建 26 张图像,每个字母对应 1 张图像,因此 apple 对应于苹果的图像。

虽然我对如何在 WP8 上执行此操作感到困惑,因此将不胜感激任何正确方向的指导

更新:感谢您的回答。我仍然必须在这里做错事。例如:

    //Set up the dictionary of AlphaImages objects. 
if (AlphaImages == null)
{
AlphaImages = new Dictionary<string, BitmapImage>();
AlphaImages.Add("Apple", new BitmapImage(@"Apple.jpg"));
}

它声称我对 BitmapImage 使用了无效参数。 Following along with this thread,用户使用此代码采用不同的方法:

Dictionary<string, Bitmap> lookup = new Dictionary<string, Bitmap>();
lookup.Add("A", new Bitmap(@"C:\08\letters\1\a1.bmp", true));

而且我也无法让它正常工作,因为编译器会吐出同样的错误。

我做错了什么?

最佳答案

尝试:

AlphaImages.Add("Apple", new BitmapImage(new Uri("Apple.jpg", UriKind.Relative)));

确保图像设置为具有内容的构建操作。

空气编码。 :)

另请参阅 here

关于c# - <string, image> 字典,WP8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14034921/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com