BusinessProcessShowView Property
Gets or sets the value determining if the view specified in the 
View property should be displayed when this 
BusinessProcess is executed.
Namespace: Firefly.BoxAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public bool ShowView { get; set; }
Public Property ShowView As Boolean
	Get
	Set
member ShowView : bool with get, set
Property Value
Boolean Form in a 
BusinessProcessusing System.Drawing;
using System.Windows.Forms;
using Firefly.Box;
using Firefly.Box.UI.Advanced;
namespace TestFirefly.Box.Documentation
{
    public class BusinessProcessForm
    {
        public void BusinessProcessWithAForm()
        {
            var bp = new BusinessProcess();
            Time start = Time.Now;
            bp.View = new Firefly.Box.UI.Form();
            var textBox = new Firefly.Box.UI.TextBox
                              {
                                  Alignment = ContentAlignment.MiddleCenter,
                                  Font = new Font("Arial", 72),
                                  Dock = DockStyle.Fill
                              };
            textBox.Data = ControlData.FromText(() => (Time.Now - start).TotalSeconds.ToString());
            bp.View.Controls.Add(textBox);
            bp.UserInterfaceRefreshInterval = 2000; //two seconds
            bp.Exit(ExitTiming.AfterRow, () => (Time.Now - start).TotalSeconds > 15);
            bp.ShowView = true;
            bp.Run();
        }
    }
}