ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Events/ProcessChangedEventArgs.cs
Revision: 196
Committed: Thu May 31 05:52:41 2012 UTC (11 years ago) by william
File size: 934 byte(s)
Log Message:
+ add some event code
+ add memeory view  dialog (wip)

File Contents

# User Rev Content
1 william 196 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5    
6     namespace RomCheater.PluginFramework.Events
7     {
8    
9     public interface IAcceptsChangedProcess
10     {
11     BaseEventHandler<ProcessChangedEventArgs> OnSelectedProcessChanged { get; set; }
12     }
13     public interface IProcessChangedEventArgs
14     {
15     int ProcessID { get; }
16     }
17     public class ProcessChangedEventArgs : BaseEventArgs, IProcessChangedEventArgs
18     {
19     public ProcessChangedEventArgs() : this(-1) { }
20     public ProcessChangedEventArgs(object sender) : this(-1, sender) { }
21     public ProcessChangedEventArgs(int pid) : base() { this.ProcessID = pid; }
22     public ProcessChangedEventArgs(int pid, object sender) : base(sender) { this.ProcessID = pid; }
23     #region IProcessChangedEventArgs members
24     public int ProcessID { get; private set; }
25     #endregion
26     }
27     }