wip - refacts
This commit is contained in:
27
CrossZicMoove/MainForm.xeto.cs
Normal file
27
CrossZicMoove/MainForm.xeto.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Eto.Forms;
|
||||
using Eto.Drawing;
|
||||
using Eto.Serialization.Xaml;
|
||||
|
||||
namespace CrossZicMoove
|
||||
{
|
||||
public class MainForm : Form
|
||||
{
|
||||
public MainForm ()
|
||||
{
|
||||
XamlReader.Load (this);
|
||||
}
|
||||
|
||||
protected void HandleClickMe (object sender, EventArgs e)
|
||||
{
|
||||
MessageBox.Show ("I was clicked!");
|
||||
}
|
||||
|
||||
protected void HandleQuit (object sender, EventArgs e)
|
||||
{
|
||||
Application.Instance.Quit ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user