1 write to _filterList
System.Web.Mobile (1)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (1)
221this._filterList = new EditableTreeList();
30 references to _filterList
System.Web.Mobile (30)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (30)
95this._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); 176foreach(DeviceFilterTreeNode node in _filterList.TvList.Nodes) 180node.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; 251this._filterList}); 256this._filterList.Size = new System.Drawing.Size(198, 224); 257this._filterList.Location = new System.Drawing.Point(0, 0); 322_filterList.UpdateButtonsEnabling(); 323bool filterIsSelected = (_filterList.SelectedNode != null); 334foreach(DeviceFilterTreeNode filter in _filterList.TvList.Nodes) 338_filterList.TvList.SelectedNode = filter; 433foreach(DeviceFilterTreeNode filterNode in _filterList.TvList.Nodes) 472foreach(DeviceFilterTreeNode filter in _filterList.TvList.Nodes) 560DeviceFilterTreeNode node = (DeviceFilterTreeNode)_filterList.SelectedNode; 575DeviceFilterTreeNode node = (DeviceFilterTreeNode)_filterList.SelectedNode; 586if (_filterList.SelectedNode == null) 601node.Text = _filterList.GetUniqueLabel(node.Text); 602_filterList.TvList.Nodes.Add(node); 603_filterList.TvList.SelectedNode = node; 645&& _filterList.LabelExists(newLabel)) 660else if(NewLabelIsLegal(_site, _filterList, oldLabel, newLabel, 673if (null != _filterList.SelectedNode) 675DeviceFilterNode node = ((DeviceFilterTreeNode)_filterList.SelectedNode).DeviceFilter;