2017-03-20 12 views
1

が私の見解はTraisUIでVSplitまたはHSplitの分割比率を指定する方法は?

DefaultView = View(
    HSplit(
     Item("figure", editor=MPLFigureEditor(toolbar=True), 
      show_label=False), 
     VGroup(
      Item("draw_button", show_label=False)), 
     show_labels=False 
    ), 
    width=800, height=600, title="Facial Triangles", resizable=True) 

以下のように定義されて私はHSplitの公式文書を検索し、最初のスプリット比を指定するなし属性やメソッドがあることがわかりました。

初期分割比を指定する方法はありますか?

答えて

2

this discussionからは、widthまたはheightという属性をItemに指定します。たとえば、上のビューが更新されます:

DefaultView = View(
    HSplit(
     Item("figure", editor=MPLFigureEditor(toolbar=True), width=0.95, 
      show_label=False), 
     VGroup(
      Item("draw_button", show_label=False)), 
     show_labels=False 
    ), 
    width=800, height=600, title="Facial Triangles", resizable=True) 
関連する問題