コード例 #1
0
 public void Attach(AssumedRegisterValuesDialog dlg)
 {
     this.dlg         = dlg;
     dlg.Load        += dlg_Load;
     dlg.FormClosing += dlg_FormClosing;
     dlg.RegisterGrid.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView1_CellValidating);
 }
コード例 #2
0
 public void Attach(AssumedRegisterValuesDialog dlg)
 {
     this.dlg = dlg;
     dlg.Load += dlg_Load;
     dlg.FormClosing += dlg_FormClosing;
     dlg.RegisterGrid.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView1_CellValidating);
 }
コード例 #3
0
ファイル: ItpForm.cs プロジェクト: relaxar/reko
 private void assumeRegistesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var dlg = new AssumedRegisterValuesDialog();
     dlg.Architecture = new X86ArchitectureFlat64();
     dlg.ShowDialog(this);
 }