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")); }
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]); }
public SearchPanel() { InitializeComponent(); SearchButton.Image = SharedResources.GetImage(Path.Combine(CoreGlobals.getWorkPaths().mAppIconDir, "Search.bmp")); }