private void OnListViewKeyDown(object sender, System.Windows.Input.KeyEventArgs e) { System.Windows.Controls.ListView ListView = sender as System.Windows.Controls.ListView; bool CtrlKeyDown = Keyboard.IsKeyDown(System.Windows.Input.Key.LeftCtrl) || Keyboard.IsKeyDown(System.Windows.Input.Key.RightCtrl); Debug.WriteLine("[DependencyImportList] Key Pressed : " + e.Key + ". Ctrl Key down : " + CtrlKeyDown); if ((e.Key == System.Windows.Input.Key.C) && CtrlKeyDown) { List <string> StrToCopy = new List <string>(); foreach (object SelectItem in ListView.SelectedItems) { DisplayPeExport PeInfo = SelectItem as DisplayPeExport; StrToCopy.Add(PeInfo.Name); } System.Windows.Clipboard.Clear(); System.Windows.Clipboard.SetText(String.Join("\n", StrToCopy.ToArray()), System.Windows.TextDataFormat.Text); return; } if ((e.Key == System.Windows.Input.Key.F) && CtrlKeyDown) { this.ExportSearchBar.Visibility = System.Windows.Visibility.Visible; this.ExportSearchFilter.Focus(); return; } }
public AheadlibCodeGenerator(string codeGenPath, string oldDllName, bool isCodegenFunctionTrace, CodeGenDllMode dllMode, string logPath, DisplayModuleInfo dlltarget, string cfg) { CodeGenPath = codeGenPath; OldDllName = oldDllName; IsCodegenFunctionTrace = isCodegenFunctionTrace; DllMode = dllMode; LogPath = logPath; DllTarget = dlltarget; Functions = new List <AheadlibFunction>(); ReplaceRuleLoader = ReplaceRuleLoader.GetReplaceRules(cfg); PhSymbolProvider symbolProvider = new PhSymbolProvider(); foreach (var expfunction in dlltarget.Exports) { AheadlibFunction function = new AheadlibFunction(); function.Ordinal = expfunction.Ordinal; function.Name = expfunction.Name; var dx = new DisplayPeExport(expfunction, symbolProvider); function.UndecorateName = dx.Name; //function.SubstituteSymbol = function.UndecorateName; //ReplaceRuleLoader.Get_NameInSourceCode_From_Name(function.Name); function.ExportByOrdinal = expfunction.ExportByOrdinal; function.VirtualAddress = expfunction.VirtualAddress; Functions.Add(function); } }