ATML1671Allocator.forms.ATMLAllocatorToolWindow.ATMLAllocatorToolWindow_Activated C# (CSharp) Method

ATMLAllocatorToolWindow_Activated() private method

private ATMLAllocatorToolWindow_Activated ( object sender, System e ) : void
sender object
e System
return void
        private void ATMLAllocatorToolWindow_Activated(object sender, System.EventArgs e)
        {
            if (availableTestStations.DockState != DockState.Float)
                availableTestStations.Show();
            //if (availableTestStations.DockState != DockState.Float)
            //    availableTestAdapters.Show();
            if (availableInstruments.DockState != DockState.Float)
                availableInstruments.Show();
            if (requiredSignals.DockState != DockState.Float)
                requiredSignals.Show();
            if (requiredInstruments.DockState != DockState.Float)
                requiredInstruments.Show();
            if (requiredAdapters.DockState != DockState.Float)
                requiredAdapters.Show();
        }