////////////////////////////////////////////////////////////////////////// //////////// End of common code for setting up the dialog //////////////// ////////////////////////////////////////////////////////////////////////// void SetupForm() { InSetup = true; ValidateViewInitialization(); GeneralPropertiesPanel.Setup(V, EditValueChanged); DataPropertiesPanel.Setup(V, SVP, EditValueChanged); XAxisPanel.Setup(V.XAxis, V, SVP, EditValueChanged); YAxisPanel.Setup(V.YAxis, V, SVP, EditValueChanged); ColorByPanel.Setup(V.ColorAxis, V, SVP, EditValueChanged); ShapeByPanel.Setup(V.ShapeAxis, V, SVP, EditValueChanged); SizeByPanel.Setup(V.SizeAxis, V, SVP, EditValueChanged); TrellisPropertiesPanel.Setup(V, V.Trellis); PropertyDialogsUtil.SelectPropertyPage(CurrentTabName, TabPageSelector, Tabs); InSetup = false; return; }
////////////////////////////////////////////////////////////////////////// //////////// End of common code for setting up the dialog //////////////// ////////////////////////////////////////////////////////////////////////// /// <summary> /// Setup the form with the TrellisCard /// </summary> void SetupForm() { InSetup = true; ValidateViewInitialization(); GeneralPropertiesPanel.Setup(V); DataPropertiesPanel.Setup(V, SVP); TrellisPropertiesPanel.Setup(V, V.Trellis); InSetup = false; return; }