private void Combox_Monitor_SelectionChanged(object sender, EventArgs e)
        {
            CurrentMonitor = Combox_Monitor.SelectedItem.ToString();

            mlManufacturer_Value.Text = monitor.GetMonitorManufacturer(CurrentMonitor);
            mlMonitorType_Value.Text  = monitor.GetMonitorType(CurrentMonitor);
            //mlDisplayFormat_Value.Text = monitor.GetPixelsPerXLogicalInch(CurrentMonitor);
            mlStatus_Value.Text    = monitor.GetStatus(CurrentMonitor);
            mlPNPDevice_Value.Text = monitor.GetPNPDeviceID(CurrentMonitor);
            mlDevice_Value.Text    = monitor.GetDeviceID(CurrentMonitor);
            //metroLabel15.Text = monitor.GetBandwidth(CurrentMonitor);
        }