- namespace COM3D2.MeidoPhotoStudio.Plugin
- {
- public abstract class BaseMainWindowPane : BaseWindowPane
- {
- protected TabsPane tabsPane;
- public void SetTabsPane(TabsPane tabsPane) => this.tabsPane = tabsPane;
-
- public override void SetParent(BaseWindow window)
- {
- foreach (BasePane pane in Panes) pane.SetParent(window);
- }
- }
- }
|