public List <string> GetImageForImageBothSide(VideoPanel8Type type)
        {
            string[] leftImages = { "zhicheng\\智城第一屏.jpg", "zhicheng\\智城第一屏1.jpg", "zhicheng\\智城第一屏2.jpg" };
            //string[] middleImages = { "m1.jpg", "m2.jpg", "m3.jpg", "m4.jpg", "m5.jpg" };
            string[] rightImages = { "zhicheng\\智城第五屏.jpg" };

            if (type == VideoPanel8Type.Left1)
            {
                List <string> images = new List <string>();
                int           size   = leftImages.Length;
                for (int i = 0; i < size; i++)
                {
                    images.Add(leftImages[i]);
                }
                return(images);
            }
            else
            {
                List <string> images = new List <string>();
                int           size   = rightImages.Length;
                for (int i = 0; i < size; i++)
                {
                    images.Add(rightImages[i]);
                }
                return(images);
            }
        }
        public List <string> GetImagesForVideoPanel8Screen(VideoPanel8Type type)
        {
            if (type == VideoPanel8Type.Left1)
            {
                List <string> images   = new List <string>();
                string        pathDir  = "HK\\aiqi\\爱企谷 第一屏1.jpg";
                string        pathDir1 = "HK\\aiqi\\爱企谷 第一屏2.jpg";
                string        pathDir2 = "HK\\aiqi\\爱企谷 第一屏3.jpg";

                images.Add(pathDir);
                images.Add(pathDir1);
                images.Add(pathDir2);

                return(images);
            }
            //else if (type == VideoPanel8Type.Left2)
            //{
            //    List<string> images = new List<string>();
            //    string pathDir = "HK\\aiqi\\爱企谷 第2屏1.jpg";
            //    string pathDir1 = "HK\\aiqi\\爱企谷 第2屏2.jpg";
            //    string pathDir2 = "HK\\aiqi\\爱企谷 第2屏3.jpg";

            //    images.Add(pathDir);
            //    images.Add(pathDir1);
            //    images.Add(pathDir2);

            //    return images;
            //}
            else if (type == VideoPanel8Type.Right1)
            {
                List <string> images   = new List <string>();
                string        pathDir  = "HK\\aiqi\\爱企谷 第六屏1.jpg";
                string        pathDir1 = "HK\\aiqi\\爱企谷 第六屏2.jpg";

                images.Add(pathDir);
                images.Add(pathDir1);


                return(images);
            }
            //else
            //{

            //    List<string> images = new List<string>();
            //    string pathDir = "HK\\aiqi\\爱企谷 第7屏1.jpg";
            //    string pathDir1 = "HK\\aiqi\\爱企谷 第7屏2.jpg";
            //    string pathDir2 = "HK\\aiqi\\爱企谷 第7屏3.jpg";

            //    images.Add(pathDir);
            //    images.Add(pathDir1);
            //    images.Add(pathDir2);
            //    return images;
            //}
            else
            {
                return(null);
            }
        }
示例#3
0
 public List <string> GetImageForImageBothSide(VideoPanel8Type type)
 {
     throw new System.NotImplementedException();
 }
示例#4
0
 public List <string> GetImagesForVideoPanel8Screen(VideoPanel8Type type)
 {
     throw new System.NotImplementedException();
 }