Example #1
0
        /// <summary>
        /// Create a list of all the subsystem types.
        /// Then select the first first subsystem.
        /// </summary>
        private void PopulateSubsystemList()
        {
            // Create the list
            ListOfSubsystems = new SubsystemList();

            // Set something new to the selected subsystem
            if (ListOfSubsystems.Count > 0)
            {
                SelectedSubsystem = ListOfSubsystems.First();
            }
        }