Exemple #1
0
 void TextView_Navigate(object sender, EditorNavigationArgs e)
 {
     var addr = e.Destination as Address;
     if (addr !=null)
     {
         var svc = services.RequireService<ILowLevelViewService>();
         svc.ShowMemoryAtAddress(program, addr);
     }
 }
Exemple #2
0
 void textView_Navigate(object sender, EditorNavigationArgs e)
 {
     var procDst = e.Destination as Procedure;
     if (procDst == null)
         return;
     DisplayProcedure(procDst);
 }
Exemple #3
0
 void editorView1_Navigate(object sender, EditorNavigationArgs e)
 {
     MessageBox.Show(this, "Hello! " + e.Destination);
 }
 private void DisassemblyControl_Navigate(object sender, EditorNavigationArgs e)
 {
     var addr = e.Destination as Address;
     if (e == null)
         return;
     UserNavigateToAddress(Control.DisassemblyView.TopAddress, addr);
 }