PropertyGrid.PropertyGrid.UpdateTabs C# (CSharp) Méthode

UpdateTabs() private méthode

private UpdateTabs ( ) : void
Résultat void
        void UpdateTabs()
        {
            foreach (Gtk.Widget w in toolbar.Children) {
                TabRadioToolButton but = w as TabRadioToolButton;
                if (but != null)
                    but.Visible = currentObject != null && but.Tab.CanExtend (currentObject);
            }
        }