.NET CF使用代码从项目路径中选择图像。

问题描述 投票:0回答:0

然后我想创建一个ImageList对象,并将其中的一些图片添加到其中,然后我得到一个错误 "System.Drawing.Image "不包含 "FromFile "定义。

public partial class us_var
    {
        #region "Static variables"
        public static string SD = @"Storage Card\";
        public static string[] tables = {"DataRecord","EventRecord","AlarmRecord"};
        public static Size _sysSize = new Size(1024,600);
        public static Size _logoSize = new Size(80,80);
        public static Size _titSize = new Size(5,1025);
        public static ImageList iL = new ImageList();       
        #endregion
    }
public partial class us_ini
    {
        public void iL_ini()
        {
            us_var.iL.Images.Add(Image.FromFile(Directory.GetCurrentDirectory() + @"\Symbols\logo.png"));
        }
    }

然后我得到一个错误 "System.Drawing.Image "不包含 "FromFile "定义。

我知道原因是.NET CF不支持这样的引号。那么我如何在.NET CF中使用代码从指定的文件夹中选择图像呢?有人有解决办法吗?谢谢你们!

c# .net compact-framework imagelist
© www.soinside.com 2019 - 2024. All rights reserved.