Move Working on getting the listboxwindow not to disappear when we do regression testing

This commit is contained in:
2018-09-27 14:41:10 -05:00
parent ead0d3511f
commit 6d3db35cfc
4 changed files with 40 additions and 34 deletions

View File

@ -2968,8 +2968,11 @@ namespace EduNetworkBuilder
//We want to show dialog, but it needs to go to the background. After that,
//It returns from the show dialog. So we need to loop continuously until
//It is completed.
DialogResult WhatHappened = DialogResult.Retry;
while (!LBW.ClosingRegression)
LBW.ShowDialog();
{
WhatHappened = LBW.ShowDialog();
}
}
#endregion