Xwt.GtkBackend.TreeViewBackend.HandleRowExpanded C# (CSharp) Method

HandleRowExpanded() private method

private HandleRowExpanded ( object o, Gtk args ) : void
o object
args Gtk
return void
        void HandleRowExpanded(object o, Gtk.RowExpandedArgs args)
        {
            Gtk.TreeIter it;
            if (Widget.Model.GetIter (out it, args.Path)) {
                CurrentEventRow = new IterPos (-1, it);
                ApplicationContext.InvokeUserCode (delegate {
                    EventSink.OnRowExpanded (new IterPos (-1, it));
                });
            }
        }