You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
I encountered an error while testing the official case using Gtk.jl
The code is as follows
using Gtk
win =GtkWindow("A new window")
g =GtkGrid()
a =GtkEntry() # a widget for entering textset_gtk_property!(a, :text, "This is Gtk!")
b =GtkCheckButton("Check me!")
c =GtkScale(false, 0:10) # a slider# Now let's place these graphical elements into the Grid:
g[1,1] = a # Cartesian coordinates, g[x,y]
g[2,1] = b
g[1:2,2] = c # spans both columnsset_gtk_property!(g, :column_homogeneous, true)
set_gtk_property!(g, :column_spacing, 15) # introduce a 15-pixel gap between columnspush!(win, g)
showall(win)
I encountered an error while testing the official case using Gtk.jl
The code is as follows
The report
I saw the program window I built appear, but it quickly disappeared
The text was updated successfully, but these errors were encountered: