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

TestStationListControl() public method

public TestStationListControl ( ) : System
return System
        public TestStationListControl()
        {
            InitializeComponent();
            InitListView();

            //CompletedAdd += TestStationListControl_CompletedAdd;
            //CompletedEdit += TestStationListControl_CompletedEdit;

            CompletedAdd += delegate( object o ) { CallAtmlAction( o, AtmlActionType.Add ); };
            CompletedEdit += delegate( object o ) { CallAtmlAction( o, AtmlActionType.Edit ); };
            CompletedDelete += delegate( object o ) { CallAtmlAction( o, AtmlActionType.Delete ); };

            if (!this.IsInDesignMode())
            {
                LoadList();
            }
        }