RefreshAutoHide() 공개 정적인 메소드

public static RefreshAutoHide ( FrameworkElement content ) : void
content System.Windows.FrameworkElement
리턴 void
예제 #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);
        }