2011-07-10 76 views

回答

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; 
+0

謝謝。事實證明,添加一個Entry比TextView更容易,但知道我可以做到這一點很好。 – MI3Guy