SIL.FieldWorks.IText.LinguaLinksImport.ShowDialogAboveProgressbar C# (CSharp) Method

ShowDialogAboveProgressbar() private static method

This method will display a message box above the progress dialog.
private static ShowDialogAboveProgressbar ( IThreadedProgress progress, string text, string title, MessageBoxButtons buttons ) : DialogResult
progress IThreadedProgress
text string
title string
buttons MessageBoxButtons
return DialogResult
		private static DialogResult ShowDialogAboveProgressbar(IThreadedProgress progress,
			string text, string title, MessageBoxButtons buttons)
		{
			return MessageBox.Show(
				text,
				title,
				buttons,
				MessageBoxIcon.Warning);
		}