作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在处理一个旧项目,正在更新它。该程序的一部分有一个工具条,上面有许多按钮,每个按钮都有一个图像。我发现图像存储在 resx 中的 Base64 编码图像流中,并按如下方式访问:
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
...
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
...
this.toolStrip1.ImageList = this.imageList1;
...
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
...
this.toolStripButton1.ImageIndex = 0; //There are 41 images, so this can be between 0 and 40
我需要添加另一个带有新图像的按钮。如何向该流中添加图像?
我无法使用设计器,因为它在我加载表单后立即崩溃(我相信是因为它使用了带有不安全代码的自定义组件)。
我总是可以添加一个独立于流的新图像资源,但这会使那个按钮不同,因此会产生一致性问题,从而导致以后的维护问题。所以我想知道是否有任何方式让我编辑图像流。我可以访问原始 base64 字符串,但我不知道从这里去哪里。
最佳答案
关于c# - 资源中添加图片到Base64编码的ImageStream(resx),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3039105/
我有一个定义如下的图像流,带有 openshift 原点。当我在 openshift 中创建、导入或更新图像流对象时,它会自动获取 docker repo 中定义的任何标签。当我通过 docker(即
我有Windows.Graphics.Imaging ImageStream .很容易将其作为 XAML 图像的来源: BitmapImage bitmapImage = new BitmapImag
我是一名优秀的程序员,十分优秀!