GTK#

(TestGTK:97864): Gtk-CRITICAL **: void gtk_container_child_set_property(GtkContainer *, GtkWidget *, const gchar *, const GValue *): assertion `child->parent == GTK_WIDGET (container)' failed
控件添加完后,要手动调用一下show().否则是显示不出来的。

需要先设置fixed layout在添加 带container中,否则无效。
下面代码位置不起作用。
Entry e = new Entry();
global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[e]));
w4.X = 600;
w4.Y = 100;
this.fixed1.Add(e);

正确应该:
Entry e = new Entry();
this.fixed1.Add(e);
global::Gtk.Fixed.FixedChild w4 = ((global::Gtk.Fixed.FixedChild)(this.fixed1[e]));
w4.X = 600;
w4.Y = 100;

你可能感兴趣的:(GTK#)