/// <summary> /// When a projection is received from client add it to the Projection Manger /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void ReceiveProjection(object sender, EventArgs e) { ProjectionObj projection = (ProjectionObj)sender; projectionManager.AddProjection(projection); //Switch if (currentProjection.isDefault && projection.isDefault) { //currentProjection = projection; //DisplaySlide(projection.GetImages().First()); } Save(); }