예제 #1
0
파일: Program.cs 프로젝트: Baptista/AVE
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Spy spy = new Spy();
            Form form1 = new Form1();
            spy.regist(form1);
            Application.Run(form1);
        }
예제 #2
0
파일: SpyViewer.cs 프로젝트: Baptista/AVE
 public SpyViewer(Spy model)
 {
     this.model = model;
     this.Visible = true;
     InitializeComponent();
 }
예제 #3
0
파일: Spy.cs 프로젝트: Baptista/AVE
 public EventListener(Spy owner, string eventName)
 {
     this.owner = owner;
     this.eventName = eventName;
 }