Esempio n. 1
0
 static void toremove_EvClicked(GuppyEventArgs e)
 {
     using (Dialog d = new Dialog("Dialog", "Hello", "HELLO", "World", "W", "A", "A"))
     {
         d.ShowModal();
     }
 }
Esempio n. 2
0
 static void A_EvClicked(GuppyEventArgs e)
 {
 }
Esempio n. 3
0
        static void EditorChanged(GuppyEventArgs e)
        {
            var pos = editor.CaretPosition;

            statustext.Caption = (pos.Y + 1).ToString() + " : " + (pos.X + 1).ToString() + " DEBUG:" + (debugindex++).ToString();
        }
Esempio n. 4
0
 static void t_EvChanged(GuppyEventArgs e)
 {
     f1.Enabled = !t.Checked;
 }
Esempio n. 5
0
 static void Program_EvClicked(GuppyEventArgs e)
 {
     editor.Append("Hello\r\n\r\n");
     editor.Append(", world");
 }