Hardware/Mainboard/Model.cs
author moel.mich
Tue, 25 May 2010 22:33:03 +0000
changeset 128 cea5477b4d72
child 130 80065ab20b84
permissions -rw-r--r--
Added an event handler to save the configuration when the user logs off without closing the application first (http://blogs.msdn.com/b/oldnewthing/archive/2008/04/21/8413175.aspx), because FormClosed is not called in that case.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 
     5 namespace OpenHardwareMonitor.Hardware.Mainboard {
     6 
     7   public enum Model {
     8     // DFI
     9     LP_BI_P45_T2RS_Elite,
    10     LP_DK_P55_T3eH9,    
    11 
    12     // Gigabyte
    13     EP45_DS3R,
    14     GA_MA785GMT_UD2H,
    15     P35_DS3,
    16 
    17     // Unknown
    18     Unknown    
    19   }
    20 }