/// <summary>
        /// The constructor of SensorMain.
        /// </summary>
        public SensorMain()
        {
            InitializeComponent();

            Items = new ObservableCollection <string>();

            /* Add Sensor List */
            List <string> types = sensorManager.GetSensorTypeList();

            foreach (var type in types)
            {
                Items.Add(type);
            }

            MyListView.ItemsSource = Items;
        }