ATMLCommonLibrary.controls.equipment.TestStationForm.TestStationForm C# (CSharp) Method

TestStationForm() public method

public TestStationForm ( ) : System
return System
        public TestStationForm()
        {
            InitializeComponent();
            InitViewButton( btnViewATML );
            Saved += delegate { UpdateAtmlViewContent(TestStationDescription); };
            Canceled += delegate
                        {
                            if (!string.IsNullOrWhiteSpace( originalSerializedATMLObject ))
                            {
                                testStationControl2.TestStationDescription =
                                    TestStationDescription11.Deserialize( originalSerializedATMLObject );
                            }
                        };
        }