RefreshAutoHide() public static méthode

public static RefreshAutoHide ( FrameworkElement content ) : void
content System.Windows.FrameworkElement
Résultat void
Exemple #1
0
        public static TabControl AddTab(this TabControl tabControl, string header, FrameworkElement content)
        {
            var ti = new TabItem {
                Header = header, Content = content
            };

            tabControl.Items.Add(ti);

            Common.RefreshAutoHide(content);

            return(tabControl);
        }