コード例 #1
0
 public ComparisonForm(ref SqlBuild.SqlSyncBuildData buildData, double lastBuildNumber, string leftZipFilePath, string leftTempFilePath, string rightZipFilePath, bool startImmediateCompare)
 {
     InitializeComponent();
     this.leftTempFilePath         = leftTempFilePath;
     this.leftZipFilePath          = leftZipFilePath;
     this.rightZipFilePath         = rightZipFilePath;
     this.buildData                = buildData;
     this.lastBuildNumber          = lastBuildNumber;
     this.startImmediateCompare    = startImmediateCompare;
     this.linkedBoxes.FileChanged += new EventHandler(linkedBoxes_FileChanged);
 }
コード例 #2
0
        public ImportListForm(SqlBuild.SqlSyncBuildData importData, string importTempPath, SqlBuild.SqlSyncBuildData buildData, string[] preSelectedFiles)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            this.importData       = importData;
            this.buildData        = buildData;
            this.importTempPath   = importTempPath;
            this.preSelectedFiles = preSelectedFiles;
        }