示例#1
0
        /// <summary>
        /// Shows component form
        /// </summary>
        public void ShowForm()
        {
            if (component is IShowForm)
            {
                IShowForm sf = component as IShowForm;
                sf.Show();
                return;
            }
            IChildObjectLabel panel = ContainerPerformer.GetPanel(component as IObjectLabel) as IChildObjectLabel;

            panel.ShowForm();
        }