Exemple #1
0
 internal override void Update(TreeNodeData tnd, bool allowUnsafeChanges, MainForm mf)
 {
     this.mf = mf;
     this.allowUnsafeChanges = allowUnsafeChanges;
     currentWindow = ((WindowData)tnd).Window;
     UpdateControls();
 }
 public SearchResultForm(MainForm mf, String title, String prefix)
 {
     this.mf = mf;
     InitializeComponent();
     tree.ImageList = mf.TreeImageList;
     this.Text = "Search results: " + title;
     if (prefix.StartsWith("{") && prefix.EndsWith("}"))
     {
         this.regex = new Regex(prefix.Substring(1, prefix.Length - 2));
         prefix = "";
     }
     else
     {
         this.regex = null;
     }
     this.prefix = prefix;
 }
 public WindowInformation(MainForm mf)
 {
     this.mf = mf;
     shiftKey = new KeyboardKey(Keys.ShiftKey);
     ctrlKey = new KeyboardKey(Keys.ControlKey);
     altKey = new KeyboardKey(Keys.Menu);
     InitializeComponent();
     menuButtons = new Button[] {
         menuButton1, menuButton2, menuButton3,
         menuButton4, menuButton5, menuButton6,
         menuButton7, menuButton8, menuButton9
     };
     clearCopied_Click(null, null);
     defaultPanel.BringToFront();
     menuPanel.BringToFront();
     listPanel.BringToFront();
     infoPanel.BringToFront();
     tmrUpdate.Enabled = true;
 }
Exemple #4
0
 internal override void Update(TreeNodeData tnd, bool allowUnsafeChanges, MainForm mf)
 {
     currentThread = ((ThreadData)tnd).Thread;
     UpdateControls();
 }
Exemple #5
0
 internal virtual void Update(TreeNodeData tnd, bool allowUnsafeChanges, MainForm mf)
 {
 }
 internal override void Update(TreeNodeData tnd, bool allowUnsafeChanges, MainForm mf)
 {
     currentAccObj = ((AccessibilityData)tnd).AccObj;
     UpdateControls();
 }
Exemple #7
0
 internal override void Update(TreeNodeData tnd, bool allowUnsafeChanges, MainForm mf)
 {
     this.allowUnsafeChanges = allowUnsafeChanges;
     currentProcess = ((ProcessData)tnd).Process;
     UpdateControls();
 }