1 instantiation of PickMembersDialog
Microsoft.VisualStudio.LanguageServices (1)
PickMembers\VisualStudioPickMembersService.cs (1)
35
var dialog = new
PickMembersDialog
(viewModel, title);
13 references to PickMembersDialog
Microsoft.VisualStudio.IntegrationTest.Utilities (6)
InProcess\PickMembersDialog_InProc.cs (6)
48
private static async Task<
PickMembersDialog
> GetDialogAsync(CancellationToken cancellationToken)
51
return Application.Current.Windows.OfType<
PickMembersDialog
>().Single();
54
private static async Task<
PickMembersDialog
> TryGetDialogAsync(CancellationToken cancellationToken)
57
return Application.Current.Windows.OfType<
PickMembersDialog
>().SingleOrDefault();
60
private static async Task ClickAsync(Func<
PickMembersDialog
.TestAccessor, ButtonBase> buttonSelector, CancellationToken cancellationToken)
63
var
dialog = await GetDialogAsync(cancellationToken);
Microsoft.VisualStudio.LanguageServices (7)
PickMembers\PickMembersDialog.xaml.cs (4)
50
typeof(
PickMembersDialog
),
57
typeof(
PickMembersDialog
),
153
private readonly
PickMembersDialog
_dialog;
155
public TestAccessor(
PickMembersDialog
dialog)
PickMembers\VisualStudioPickMembersService.cs (1)
35
var
dialog = new PickMembersDialog(viewModel, title);
PickMembersDialog.g.cs (2)
48
internal Microsoft.VisualStudio.LanguageServices.Implementation.PickMembers.
PickMembersDialog
dialog;
156
this.dialog = ((Microsoft.VisualStudio.LanguageServices.Implementation.PickMembers.
PickMembersDialog
)(target));