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