DeploymentTracker.App.Windows.PackageDeployment.CbxSubscriptions_SelectedIndexChanged C# (CSharp) Method

CbxSubscriptions_SelectedIndexChanged() private method

Handles the SelectedIndexChanged event of the cbxSubscriptions control.
private CbxSubscriptions_SelectedIndexChanged ( object sender, EventArgs e ) : void
sender object The source of the event.
e EventArgs The instance containing the event data.
return void
        private void CbxSubscriptions_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (backgroundThread == null || !backgroundThread.IsAlive)
            {
                backgroundThread = new Thread(new ThreadStart(this.LoadSubscriptionsDetails));
                backgroundThread.Start();
            }
        }