Ejemplo n.º 1
0
        protected override void OnShow(Control smartPart, TSmartPartInfo smartPartInfo)
        {
            Utilities.Output("OnShow", "Before", smartPart, smartPartInfo);

            composedWorkspace.OnShow(smartPart, smartPartInfo);

            Utilities.Output("OnShow", "After", smartPart, smartPartInfo);
        }
 /// <summary>
 /// Calls <see cref="IComposableWorkspace{TSmartPart, TSmartPartInfo}.OnShow"/>
 /// on the composed workspace.
 /// </summary>
 protected override void OnShow(TSmartPart smartPart, TSmartPartInfo smartPartInfo)
 {
     composedWorkspace.OnShow(smartPart, smartPartInfo);
 }