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