1 write to _filterList
System.Web.Mobile (1)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (1)
221
this.
_filterList
= new EditableTreeList();
30 references to _filterList
System.Web.Mobile (30)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (30)
95
this.
_filterList
.TabIndex = tabOffset++;
117
_filterList
.LblTitle.Text = SR.GetString(SR.DeviceFilterEditorDialog_DeviceFilters);
118
_filterList
.BtnAdd.Text = SR.GetString(SR.DeviceFilterEditorDialog_NewDeviceFilter);
167
_filterList
.TvList.Nodes.Add(node);
176
foreach(DeviceFilterTreeNode node in
_filterList
.TvList.Nodes)
180
node.Text =
_filterList
.GetUniqueLabel(
194
_filterList
.TvList.AfterLabelEdit += new NodeLabelEditEventHandler(OnAfterLabelEdit);
195
_filterList
.TvList.AfterSelect += new TreeViewEventHandler(OnFilterSelected);
196
_filterList
.BtnAdd.Click += new EventHandler(OnClickAddButton);
197
_filterList
.BtnRemove.Click += new EventHandler(OnClickRemoveButton);
198
_filterList
.TvList.SelectedNode = null;
251
this.
_filterList
});
256
this.
_filterList
.Size = new System.Drawing.Size(198, 224);
257
this.
_filterList
.Location = new System.Drawing.Point(0, 0);
322
_filterList
.UpdateButtonsEnabling();
323
bool filterIsSelected = (
_filterList
.SelectedNode != null);
334
foreach(DeviceFilterTreeNode filter in
_filterList
.TvList.Nodes)
338
_filterList
.TvList.SelectedNode = filter;
433
foreach(DeviceFilterTreeNode filterNode in
_filterList
.TvList.Nodes)
472
foreach(DeviceFilterTreeNode filter in
_filterList
.TvList.Nodes)
560
DeviceFilterTreeNode node = (DeviceFilterTreeNode)
_filterList
.SelectedNode;
575
DeviceFilterTreeNode node = (DeviceFilterTreeNode)
_filterList
.SelectedNode;
586
if (
_filterList
.SelectedNode == null)
601
node.Text =
_filterList
.GetUniqueLabel(node.Text);
602
_filterList
.TvList.Nodes.Add(node);
603
_filterList
.TvList.SelectedNode = node;
645
&&
_filterList
.LabelExists(newLabel))
660
else if(NewLabelIsLegal(_site,
_filterList
, oldLabel, newLabel,
673
if (null !=
_filterList
.SelectedNode)
675
DeviceFilterNode node = ((DeviceFilterTreeNode)
_filterList
.SelectedNode).DeviceFilter;