private void aWSToARMToolStripMenuItem_Click(object sender, EventArgs e) { MessageBox.Show("AWS To ARM has not been finalized in this newer MigAz tool. Continue to use the stand alone AWS To ARM MigAz tool for AWS."); return; SplitterPanel parent = (SplitterPanel)splitContainer2.Panel1; AwsToArm awsToArm = new AwsToArm(StatusProvider, LogProvider, propertyPanel1); awsToArm.Bind(); parent.Controls.Add(awsToArm); newMigrationToolStripMenuItem.Enabled = false; closeMigrationToolStripMenuItem.Enabled = true; }
private async void aWSToARMToolStripMenuItem_Click(object sender, EventArgs e) { MessageBox.Show("Coming soon to MigAz v2. Continue to utilize seperate AWS to ARM MigAz Tool until integrated. https://aka.ms/MigAz"); SplitterPanel parent = (SplitterPanel)splitContainer2.Panel1; AwsToArm awsToArm = new AwsToArm(StatusProvider, LogProvider, propertyPanel1); awsToArm.TemplateGenerator.AfterTemplateChanged += TemplateGenerator_AfterTemplateChanged; await awsToArm.Bind(); parent.Controls.Add(awsToArm); splitContainer2_Panel1_Resize(this, null); newMigrationToolStripMenuItem.Enabled = false; closeMigrationToolStripMenuItem.Enabled = true; }