##// END OF EJS Templates
removed the reference to the parent from the promise object this allows...
removed the reference to the parent from the promise object this allows resolved promises to release parents and results they are holding. Added complete set of operations to IPromiseBase interface Subscribing to the cancellation event of the promise should not affect it's IsExclusive property More tests.

File last commit:

r5:f2559580b481 default
r33:b255e4aeef17 default
Show More
OverlayForm.cs
30 lines | 673 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 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());
}
}
}
}