Beispiel #1
0
        public RefSetPanel()
        {
            InitializeComponent();

            this.SetRefButton.Image   = SharedResources.GetImage(Path.Combine(CoreGlobals.getWorkPaths().mAppIconDir, "VisualEditor_Refresh.png"));
            this.ClearRefButton.Image = SharedResources.GetImage(Path.Combine(CoreGlobals.getWorkPaths().mAppIconDir, "DeleteHS.png"));
        }
Beispiel #2
0
 static public ImageList GetImageList(string[] names)
 {
     if (mImageLists.ContainsKey(names) == false)
     {
         ImageList list = new ImageList();
         foreach (string file in names)
         {
             list.Images.Add(SharedResources.GetImage(file));
         }
         mImageLists[names] = list;
     }
     return(mImageLists[names]);
 }
Beispiel #3
0
        public SearchPanel()
        {
            InitializeComponent();

            SearchButton.Image = SharedResources.GetImage(Path.Combine(CoreGlobals.getWorkPaths().mAppIconDir, "Search.bmp"));
        }