コード例 #1
0
            public override void Exited(ExitContextWrapper context)
            {
                base.Exited(context);

                // The call to this method is made on a thread that is allocated by  the COM
                // interop framework. To set a text in the Form we must switch to the Form thread.
                // By doing this with an asynchronous BeginInvoke, this method returns immediately
                // an thus does the COM call from TIBCO Spotfire which allows TIBCO Spotfire to continue execution.

                TestForm.BeginInvoke(
                    new MethodInvoker(
                        delegate
                {
                    TestForm.StatusTextBox.Text          += "TIBCO Spotfire exited.";
                    TestForm.StartAnalystButton.Enabled   = true;
                    TestForm.StartWebPlayerButton.Visible = true;
                }));
            }
コード例 #2
0
        /// <summary>
        /// Called when Spotfire exits
        /// </summary>
        /// <param name="context"></param>

        public override void Exited(ExitContextWrapper context)
        {
            base.Exited(context);

            UpdateStatusMessage("TIBCO Spotfire exited.");
        }
コード例 #3
0
 public virtual void Exited(ExitContextWrapper context)
 {
 }