UIControllerLeaveRow Event
Occurs whenever the user leaves a row, before the
RowChanged property occurs
Namespace: Firefly.BoxAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public event Action LeaveRow
Public Event LeaveRow As Action
member LeaveRow : IEvent<Action,
EventArgs>
Value
Action
When the user leaves the row (whether the row needs to be saved to the database
or not) this event is raised and can be used for various operations.
UIController event flow
This example is based on test data. The code for the entities included in this test data can be found in the documentation of
EntityThis example uses automatic tools to generate parts of the user interface. Those tools can be found in the example of the documentation of
Formusing Firefly.Box;
using System.Windows.Forms;
namespace TestFirefly.Box.Documentation
{
public class UIControllerEventFlow
{
public void NormalEventFlow()
{
var jobs = new Pubs.Jobs();
jobs.InitializeWithTestData();
var uic = new UIController
{
From = jobs,
View = UITools.GenerateFormWithGridFor("UIController events",
"notice that the SavingRow MessageBox only happens for rows that were changed" +
"\nAlso pay attention to the fact that the \"After The Run\" message " +
"will come only after the task ends",
jobs.Id,
jobs.Description)
};
uic.Load += () => MessageBox.Show("Load");
uic.Start += () => MessageBox.Show("Start");
uic.EnterRow += () => MessageBox.Show("EnterRow");
uic.LeaveRow += () => MessageBox.Show("LeaveRow");
uic.SavingRow += (b) => MessageBox.Show("SavingRow");
uic.End += () => MessageBox.Show("End");
MessageBox.Show("Before The Run");
uic.Run();
MessageBox.Show("After The Run");
}
}
}