1 write to BtnDown
System.Web.Mobile (1)
UI\MobileControls\Design\Util\EditableTreeList.cs (1)
57this.BtnDown = new System.Windows.Forms.Button();
13 references to BtnDown
System.Web.Mobile (13)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (1)
111_appliedFiltersList.BtnDown.Click += new EventHandler(OnAppliedFiltersReordered);
UI\MobileControls\Design\ListComponentEditorPage.cs (1)
66TreeList.BtnDown.Click += new EventHandler(OnClickDownButton);
UI\MobileControls\Design\Util\EditableTreeList.cs (11)
89BtnDown.AccessibleName = SR.GetString(SR.EditableTreeList_MoveDownName); 90BtnDown.AccessibleDescription = SR.GetString(SR.EditableTreeList_MoveDownDescription); 91BtnDown.Name = SR.GetString(SR.EditableTreeList_MoveDownName); 92BtnDown.Location = new System.Drawing.Point(182, 48); 93BtnDown.Size = new System.Drawing.Size(28, 27); 94BtnDown.Anchor = AnchorStyles.Top | AnchorStyles.Right; 119this.Controls.Add(BtnDown); 123BtnDown.Image = GenericUI.SortDownIcon; 128BtnDown.Click += new EventHandler(MoveSelectedItemDown); 347BtnDown.Enabled = (selectedIndex < TvList.Nodes.Count - 1); 352BtnDown.Enabled = false;