##// END OF EJS Templates
working on runnable component
working on runnable component

File last commit:

r5:f2559580b481 default
r184:d6a8cba73acc ref20160224
Show More
OverlayForm.cs
30 lines | 673 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Implab.Fx.Test.Sample
{
public partial class OverlayForm : Form
{
public event EventHandler ButtonEvent;
public OverlayForm()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
EventHandler temp = ButtonEvent;
if (temp != null)
{
temp(this,new EventArgs());
}
}
}
}