Exemplo n.º 1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Spy spy = new Spy();
            Form form1 = new Form1();
            spy.regist(form1);
            Application.Run(form1);
        }
Exemplo n.º 2
0
 public SpyViewer(Spy model)
 {
     this.model = model;
     this.Visible = true;
     InitializeComponent();
 }
Exemplo n.º 3
0
Arquivo: Spy.cs Projeto: Baptista/AVE
 public EventListener(Spy owner, string eventName)
 {
     this.owner = owner;
     this.eventName = eventName;
 }