Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从字节加载 Gdk.Pixbuf:
_pixbuf = new Gdk.Pixbuf(bytes);
然后,我想读取 _pixbuf 数据。但是,看起来数据实际上是在后台加载的,因为数据暂时不存在。如果我等待,一切都很好。
我怎样才能知道它何时完成,或强制更新?
事实证明,这段代码很好......我在图形线程中执行它,并在它完成之前返回。一旦我执行它以使其阻塞直到完成,那么一切都很好。