Show() 공개 메소드

public Show ( ) : void
리턴 void
예제 #1
0
        private static void clickDemo(jQueryEvent arg)
        {
            BaseDemo d = arg.Data as BaseDemo;

            if (d == ActiveDemo)
            {
                return;
            }

            if (ActiveDemo != null)
            {
                ActiveDemo.Hide();
                DemoContainer.RemoveChild(ActiveDemo.Container);
                ActiveDemo = null;
            }

            ActiveDemo = d;
            DemoContainer.AppendChild(ActiveDemo.Container);

            Action doShow = delegate
            {
                ActiveDemo.Show();
            };

            Window.SetTimeout(doShow, 500);
        }
예제 #2
0
        private static void clickDemo(jQueryEvent arg)
        {
            BaseDemo d = arg.Data as BaseDemo;

            if (d == ActiveDemo) return;

            if (ActiveDemo != null)
            {
                ActiveDemo.Hide();
                DemoContainer.RemoveChild(ActiveDemo.Container);
                ActiveDemo = null;
            }

            ActiveDemo = d;
            DemoContainer.AppendChild(ActiveDemo.Container);

            Action doShow = delegate
            {
                ActiveDemo.Show();
            };

            Window.SetTimeout(doShow, 500);
        }