GTK开发--如何调整Button按钮大小

解决方案:只找到一个一般的方法,把按钮放入fixed的容器中。

fixed = gtk_fixed_new();//一个fixed的容器,放入button

gtk_fixed_put(GTK_FIXED(fixed), button, 200, 0);

gtk_box_pack_start(GTK_BOX(vbox), fixed, FALSE, FALSE, 5);

然后把vbox放入window,运行后就能看到效果了。

Leave a Reply

Your email address will not be published. Required fields are marked *