/// <summary>
 /// ClickExplorer
 /// </summary>
 public static WpfTabPage FindTabPage(string tabName)
 {
     UIBusinessDesignStudioWindow theWindow = new UIBusinessDesignStudioWindow();
     UIPART_UnpinnedTabAreaTabList theTabList = new UIPART_UnpinnedTabAreaTabList(theWindow);
     //UIPART_UnpinnedTabAreaTabList 
     #region Variable Declarations
     WpfTabPage uIGenericTabPage = new WpfTabPage(theTabList);
     uIGenericTabPage.SearchProperties["Name"] = tabName;
     return uIGenericTabPage;
     #endregion
 }
        /// <summary>
        /// ClickExplorer
        /// </summary>
        public static WpfTabPage FindTabPage(string tabName)
        {
            UIBusinessDesignStudioWindow  theWindow  = new UIBusinessDesignStudioWindow();
            UIPART_UnpinnedTabAreaTabList theTabList = new UIPART_UnpinnedTabAreaTabList(theWindow);

            //UIPART_UnpinnedTabAreaTabList
            #region Variable Declarations
            WpfTabPage uIGenericTabPage = new WpfTabPage(theTabList);
            uIGenericTabPage.SearchProperties["Name"] = tabName;
            return(uIGenericTabPage);

            #endregion
        }
Beispiel #3
0
 public void CloseStudio()
 {
     new Point();
     UIBusinessDesignStudioWindow.SetFocus();
     SendKeys.SendWait("%{F4}");
 }