如何在Ruby中的glade3中获取条目文本?

时间:2016-04-18 11:30:03

标签: ruby user-interface gtk3 glade

它是我第一次在stackoverflow中获得帮助。 我正在使用glade3制作一个Ruby GUI,但我现在真的不知道如何从输入框中获取文本? 它应该从输入框中读取文本并将其写入Excel工作表。

我希望你能帮助我:)。

1 个答案:

答案 0 :(得分:0)

请参阅此处的示例:https://xrob.wordpress.com/2007/04/20/creating-a-gui-application-using-glade-and-ruby/

  

我们希望在应用程序中更改某些内容,因此我们需要为我们要更改的窗口小部件分配一个变量。我们想要改变“label1”,因此我们在button1_clicked函数中插入此代码。

@myEntryBox = @glade.get_widget(“myEntryBox”)
# You can now access properties like '@myEntryBox.text'
# Refer to documentation for exact name of the attribute