/// <summary> /// Determines destination back end. /// </summary> protected void DestinationSetup() { if (string.IsNullOrEmpty(Destination)) { var edlg = new ExportDlg { ExportType = DataType }; edlg.ShowDialog(); Destination = edlg.ExportType; } }