我在我的 Gtk 项目中添加了一个图像元素。
如何设置/更改此图像元素的来源?
这是的内容MainWindow.cs
:
using System;
using Gtk;
public partial class MainWindow: Gtk.Window
{
public MainWindow (): base (Gtk.WindowType.Toplevel)
{
Build ();
}
protected void OnDeleteEvent (object sender, DeleteEventArgs a)
{
Application.Quit ();
a.RetVal = true;
}
}
在MainWindow
方法上,this.image1
似乎是我添加的图像元素。它不包含与设置源相关的Source
属性或任何set...
方法。
那么,我怎样才能从后面的代码中更改源代码呢?是否可以直接传递Bitmap
对象?
在 Ubuntu 14.10 上使用 MonoDevelop 4.0.12。