コード例 #1
0
 public NewItemDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
     _app = app;
 }
コード例 #2
0
        public static AzureWebSitePublishDialog FromDte(VisualStudioApp app)
        {
            var publishDialogHandle = app.OpenDialogWithDteExecuteCommand("Build.PublishSelection");

            return(new AzureWebSitePublishDialog(app, AutomationElement.FromHandle(publishDialogHandle)));
        }
コード例 #3
0
 public NewProjectDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #4
0
ファイル: AutomationDialog.cs プロジェクト: krus/PTVS
 public AutomationDialog(VisualStudioApp app, AutomationElement element)
     : base(element)
 {
     App            = app;
     DefaultTimeout = TimeSpan.FromSeconds(10.0);
 }
コード例 #5
0
 public CredentialsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #6
0
ファイル: ReplWindowProxy.cs プロジェクト: zhangjinxing/PTVS
 public abstract ToolWindowPane ActivateInteractiveWindow(VisualStudioApp app, string executionMode);
コード例 #7
0
ファイル: PythonTestExplorer.cs プロジェクト: zyxws012/PTVS
 public PythonTestExplorer(VisualStudioApp app, AutomationElement element, AutomationWrapper searchBarTextBox)
     : base(element)
 {
     _app       = app;
     _searchBar = searchBarTextBox ?? throw new ArgumentNullException(nameof(searchBarTextBox));
 }
コード例 #8
0
 public SelectFolderDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #9
0
 public AzureImportSubscriptionDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #10
0
ファイル: VisualStudioInstance.cs プロジェクト: krus/PTVS
 public void CheckMessageBox(MessageBoxButton button, params string[] text)
 {
     VisualStudioApp.CheckMessageBox(button, text);
 }
コード例 #11
0
ファイル: ToolsOptionsDialog.cs プロジェクト: zyxws012/PTVS
 public ToolsOptionsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #12
0
ファイル: VisualStudioInstance.cs プロジェクト: krus/PTVS
 public void CheckMessageBox(params string[] text)
 {
     VisualStudioApp.CheckMessageBox(text);
 }
コード例 #13
0
 public AzureManageSubscriptionsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #14
0
 public static NewProjectDialog FromDte(VisualStudioApp app)
 {
     return(app.FileNewProject());
 }
コード例 #15
0
 public AzureCloudServicePublishDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #16
0
 public AddExistingEnvironmentDialogWrapper(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #17
0
ファイル: PythonTestExplorer.cs プロジェクト: sunsure/PTVS
 public PythonTestExplorer(VisualStudioApp app, AutomationElement element)
     : base(element)
 {
     _app = app;
 }
コード例 #18
0
 public AzureWebSiteImportPublishSettingsDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #19
0
 public SaveDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #20
0
ファイル: RemoveItemDialog.cs プロジェクト: shijiong/ntvsiot
 public RemoveItemDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #21
0
ファイル: OverwriteFileDialog.cs プロジェクト: xNUTs/PTVS
 private OverwriteFileDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #22
0
ファイル: RemoveItemDialog.cs プロジェクト: shijiong/ntvsiot
 public static RemoveItemDialog FromDte(VisualStudioApp app)
 {
     return(new RemoveItemDialog(app, AutomationElement.FromHandle(app.OpenDialogWithDteExecuteCommand("Edit.Delete"))));
 }
コード例 #23
0
ファイル: AutomationDialog.cs プロジェクト: krus/PTVS
 public static AutomationDialog WaitForDialog(VisualStudioApp app)
 {
     return(new AutomationDialog(app, AutomationElement.FromHandle(app.WaitForDialog())));
 }
コード例 #24
0
ファイル: SaveDialog.cs プロジェクト: shijiong/ntvsiot
 public static SaveDialog FromDte(VisualStudioApp app) {
     return new SaveDialog(
         app,
         AutomationElement.FromHandle(app.OpenDialogWithDteExecuteCommand("File.SaveSelectedItemsAs"))
     );
 }
コード例 #25
0
 public AzureWebSitePublishDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #26
0
 public EditorWindow(VisualStudioApp app, string filename, AutomationElement element)
     : base(element)
 {
     VisualStudioApp = app;
     _filename       = filename;
 }
コード例 #27
0
 public AddExistingItemDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }
コード例 #28
0
 public ChooseLocationDialog(VisualStudioApp app, AutomationElement element)
     : base(app, element)
 {
 }