19 references to ShowDialog
PresentationUI (5)
MS\Internal\Documents\DocumentSignatureManager.cs (4)
254dialog.ShowDialog(parentWindow); 290dialog.ShowDialog(parentWindow); 525dialog.ShowDialog(NativeWindow.FromHandle(parentWindow)); 764requestSignatureDialog.ShowDialog(DocumentApplicationDocumentViewer.Instance.RootBrowserWindow);
MS\Internal\Documents\SigningProgress.cs (1)
110ShowDialog(null);
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
4885result = dialog.ShowDialog(this);
System\Windows\Forms\Design\ComponentEditorForm.cs (1)
461ShowDialog(owner);
System\Windows\Forms\Form.cs (2)
5559public DialogResult ShowDialog() => ShowDialog(owner: null); 5832DialogResult result = ShowDialog(owner);
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\CollectionEditVerbManager.cs (1)
178return dialog.ShowDialog(_designer.Component as IWin32Window);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
857_addColumnDialog.ShowDialog(this);
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
804return dialog.ShowDialog(Control);
System\Windows\Forms\Design\EditorServiceContext.cs (1)
132return dialog.ShowDialog(_designer.Component as IWin32Window);
System.Windows.Forms.Tests (2)
System\Windows\Forms\FormTests.cs (2)
2580(Form form, Control control) => form.ShowDialog(owner: control) 2590(Form form, Control control) => form.ShowDialog(owner: control.FindForm())
WinFormsControlsTest (4)
Dialogs.cs (2)
50form.ShowDialog(this); 124dialog.ShowDialog(this);
FormShowInTaskbar.cs (1)
59form.ShowDialog(this);
MainForm.cs (1)
82new InitInfo("Dialogs", (obj, e) => new Dialogs().ShowDialog(this))