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