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

TestAdapterListControl() public method

public TestAdapterListControl ( ) : System
return System
        public TestAdapterListControl()
        {
            InitializeComponent();
            InitListView();
            if (!this.IsInDesignMode())
            {
                LoadList();
            }
            CompletedAdd += delegate( object o ) { CallAtmlAction( o, AtmlActionType.Add ); };
            CompletedEdit += delegate( object o ) { CallAtmlAction( o, AtmlActionType.Edit ); };
            CompletedDelete += delegate( object o ) { CallAtmlAction( o, AtmlActionType.Delete ); };
        }