1 write to comboBoxTraceLevel
WsatUI (1)
MMCUI\TraceOptionsForm.designer.cs (1)
48this.comboBoxTraceLevel = new System.Windows.Forms.ComboBox();
16 references to comboBoxTraceLevel
WsatUI (16)
MMCUI\TraceOptionsForm.cs (11)
82if (comboBoxTraceLevel.SelectedItem != null) 84string traceLevelString = comboBoxTraceLevel.SelectedItem.ToString(); 102comboBoxTraceLevel.Items.Add(CommandLineOption.TracingCritical); 103comboBoxTraceLevel.Items.Add(CommandLineOption.TracingError); 104comboBoxTraceLevel.Items.Add(CommandLineOption.TracingWarning); 105comboBoxTraceLevel.Items.Add(CommandLineOption.TracingInformation); 106comboBoxTraceLevel.Items.Add(CommandLineOption.TracingVerbose); 107comboBoxTraceLevel.Items.Add(CommandLineOption.TracingAll); 108comboBoxTraceLevel.Items.Add(CommandLineOption.TracingOff); 112foreach (object item in comboBoxTraceLevel.Items) 119comboBoxTraceLevel.SelectedItem = item;
MMCUI\TraceOptionsForm.designer.cs (5)
130this.panelTraceLevel.Controls.Add(this.comboBoxTraceLevel); 153this.comboBoxTraceLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 154this.comboBoxTraceLevel.FormattingEnabled = true; 155resources.ApplyResources(this.comboBoxTraceLevel, "comboBoxTraceLevel"); 156this.comboBoxTraceLevel.Name = "comboBoxTraceLevel";