C#工具栏图像集合编辑器

时间:2013-02-08 10:39:10

标签: c# winforms image collections toolbar

我有一个带有工具栏和图像集的应用程序。问题是我没有原始图像,我需要用一些相同的按钮创建另一个工具栏。有没有办法将图像集从工具栏保存到文件?

我尝试从资源文件中提取图像,但我不知道哪个图像存储在其中。

3 个答案:

答案 0 :(得分:4)

虽然我没有找到我的问题的答案,但我设法通过阅读工具栏图像列表并根据给定的图像键将每个图像保存到文件来获取图像。

for (int x = 0; x < this.imageListToolbar3small.Images.Count; ++x)
        {
            Image temp = this.imageListToolbar.Images[x];
            temp.Save(this.imageListToolbar.Images.Keys[x] + ".png");
        }

这来自对这个问题的回答:How to Export Images from an Image List in VS2005?

我刚刚在InitializeComponent调用之后添加了代码,并以调试模式保存了所有图像。我不需要运行完整的应用程序。

如果有人有更好的想法或小应用程序只使用资源文件从工具栏检索图像,那将不胜感激。我不会将其标记为答案,因为它更像是一种解决方法。

答案 1 :(得分:0)

我使用这种方法:

foreach (ToolBarButton b in toolBar.Buttons)
{
  //can be negative, for separators, because separators don't have images
  if (b.ImageIndex >= 0)
  {
    Image i = toolBar.ImageList.Images[b.ImageIndex];
    i.Save(b.ImageIndex + ".png");
  }
}

答案 2 :(得分:0)

我需要从控件的私有ImageList成员中恢复图像。我使用了以下代码(对不起,它是VB,但s / b易于重构)

    Dim cntrl = New TheClassWithThePrivateImageList
    Dim pi As Reflection.PropertyInfo, iml As System.Windows.Forms.ImageList, propName = "ThePropertyName"
    pi = cntrl.GetType.GetProperty(propName, Reflection.BindingFlags.NonPublic Or Reflection.BindingFlags.Instance)
    iml = CType(pi.GetValue(cntrl), System.Windows.Forms.ImageList)
    For Each key In iml.Images.Keys
        Dim image As Drawing.Image = iml.Images.Item(key)
        image.Save($"{propName}_{key}")
    Next