상속: System.Windows.Forms.Form
예제 #1
0
파일: Form1.cs 프로젝트: stkerr/MemoryPIN
        private void toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            LibraryRebaseForm rebaseForm = new LibraryRebaseForm(ref libraryProcessor);

            rebaseForm.ShowDialog();
            resultsGridView.DataSource = processor.Instructions;
        }
예제 #2
0
파일: Form1.cs 프로젝트: IMCG/MemoryPIn
 private void toolStripMenuItem1_Click(object sender, EventArgs e)
 {
     LibraryRebaseForm rebaseForm = new LibraryRebaseForm(ref libraryProcessor);
     rebaseForm.ShowDialog();
     resultsGridView.DataSource = processor.Instructions;
 }