Esempio n. 1
0
        protected virtual void OnSourceRowRemoved(Source source, TreeIter iter)
        {
            SourceRowEventHandler handler = SourceRowRemoved;

            if (handler != null)
            {
                handler(this, new SourceRowEventArgs(source, iter, TreeIter.Zero));
            }
        }
Esempio n. 2
0
        protected virtual void OnSourceRowInserted(Source source, TreeIter iter, TreeIter parentIter)
        {
            SourceRowEventHandler handler = SourceRowInserted;

            if (handler != null)
            {
                handler(this, new SourceRowEventArgs(source, iter, parentIter));
            }
        }