예제 #1
0
        protected override void OnApplySmartPartInfo(Control smartPart, TSmartPartInfo smartPartInfo)
        {
            Utilities.Output("OnApplySmartPartInfo", "Before", smartPart, smartPartInfo);

            composedWorkspace.OnApplySmartPartInfo(smartPart, smartPartInfo);

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