hMailServer.Administrator.ucPerformance.ucPerformance C# (CSharp) Method

ucPerformance() public method

public ucPerformance ( ) : System
return System
        public ucPerformance()
        {
            InitializeComponent();

             DirtyChecker.SubscribeToChange(this, OnContentChanged);

             comboWorkerThreadPriority.AddItem("Highest", 2);
             comboWorkerThreadPriority.AddItem("Above normal", 1);
             comboWorkerThreadPriority.AddItem("Normal", 0);
             comboWorkerThreadPriority.AddItem("Below normal", -1);
             comboWorkerThreadPriority.AddItem("Lowest", -2);
             comboWorkerThreadPriority.AddItem("Idle", -15);

             new TabOrderManager(this).SetTabOrder(TabOrderManager.TabScheme.AcrossFirst);
        }