##// END OF EJS Templates
Added Skip method to JSON parser to skip contents of the current node
Added Skip method to JSON parser to skip contents of the current node

File last commit:

r5:f2559580b481 default
r62:62b440d46313 default
Show More
MainForm.cs
30 lines | 667 B | text/x-csharp | CSharpLexer
cin
implemented overlay helpers and some animation heplers improvments
r5 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 MainForm : Form
{
public event EventHandler ButtonEvent;
public MainForm()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
EventHandler temp = ButtonEvent;
if (temp != null)
{
temp(this,new EventArgs());
}
}
}
}