我每个人都是大瓦拉·纽比。我制作了一个cusButton函数,该函数在某种程度上用于重构其他按钮并减少代码行。 编译并运行后,出现一个空白屏幕。(未显示任何内容) 这可能是一个愚蠢的错误。你们能指出我的错误吗?
Gtk.Button cusButton(string label,Gtk.Box grid ){
var button = new Gtk.Button.with_label(label);
button.show();
grid.pack_start(button,true,true,0);
return button;
}
public class window:Gtk.ApplicationWindow{
internal window(MyApplication app){
Object (application:app,title:"TCalc");
this.set_default_size(640,1136);
this.window_position = Gtk.WindowPosition.CENTER;
var parent = new Gtk.Box(Gtk.Orientation.VERTICAL,0);
//Row 1
//int left, int top, int width , int height
var row1 = new Gtk.Box(Gtk.Orientation.HORIZONTAL,0);
var clear_button = cusButton("AC",row1);
var ac_button = cusButton("<-",row1);
var perc_button = cusButton("%",row1);
var div_button = cusButton("/",row1);
//Row 2
var row2 = new Gtk.Box(Gtk.Orientation.HORIZONTAL,0);
var sev_button = cusButton("7",row2);
var eight_button = cusButton("8",row2);
var nine_button = cusButton("9",row2);
var multi_button = cusButton("X",row2);
//A few more rows..
parent.pack_start(row1,false,false,1);
parent.pack_start(row2,false,false,1);
this.add(parent);
parent.show();
}
}
public class MyApplication : Gtk.Application {
protected override void activate(){
new window (this).show();
}
internal MyApplication () {
Object (application_id: "org.example.MyApplication");
}
}
public static int main(string[] args) {
return new MyApplication().run(args);
}
答案 0 :(得分:3)
尝试使用show_all ()
代替show ()
。这样可以节省在所有小部件上调用show的时间。所以改变:
protected override void activate(){
new window (this).show();
}
到
protected override void activate(){
new window (this).show_all();
}
然后,您还可以删除对show ()
的其他呼叫,例如button.show();
,您的代码中已有。