public void OpenPane() { UIThreadExecutor.Execute((Action)(() => { FunctionalTestExtensions.GetRibbonUi().OnAction( new RibbonControl(TimerLabText.PaneTag)); _pane = FunctionalTestExtensions.GetTaskPane( typeof(TimerPane)).Control as TimerPane; })); }
public void OpenPane() { UIThreadExecutor.Execute(() => { FunctionalTestExtensions.GetRibbonUi().OnAction( new RibbonControl("ColorsLabButton")); _pane = FunctionalTestExtensions.GetTaskPane( typeof(ColorPane)).Control as ColorPane; }); }
public void OpenPane() { UIThreadExecutor.Execute(() => { FunctionalTestExtensions.GetRibbonUi().CustomShapeButtonClick( new RibbonControl("ShapesLab")); _pane = FunctionalTestExtensions.GetTaskPane( typeof(CustomShapePane)).Control as CustomShapePane; }); }
public void OpenPane() { UIThreadExecutor.Execute(() => { FunctionalTestExtensions.GetRibbonUi().OnAction( new RibbonControl(ShapesLabText.PaneTag)); _pane = FunctionalTestExtensions.GetTaskPane( typeof(CustomShapePane)).Control as CustomShapePane; }); _pane?.InitCustomShapePaneStorage(); }