Gtk#在ToolBar中嵌入TextView

时间:2011-07-10 20:36:31

标签: c# gtk#

有没有办法在ToolBar中嵌入TextView小部件?我在Linux上使用Gtk#和C#on mono。

1 个答案:

答案 0 :(得分:0)

我最近不得不为一个项目做这个,并且能够通过手动设置宽度和高度请求来完成。将TextView放在HBox(或类似的)中也可以。

    Toolbar _toolBar = new Toolbar();

    TextView t = new TextView();
    t.WidthRequest = 200;
    t.HeightRequest = 20;
    _toolBar.Add(t);

    t.Buffer.Text = "Hello World!";
    t.Visible = true;