1 write to BtnUp
System.Web.Mobile (1)
UI\MobileControls\Design\Util\EditableTreeList.cs (1)
59this.BtnUp = new System.Windows.Forms.Button();
13 references to BtnUp
System.Web.Mobile (13)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (1)
110_appliedFiltersList.BtnUp.Click += new EventHandler(OnAppliedFiltersReordered);
UI\MobileControls\Design\ListComponentEditorPage.cs (1)
65TreeList.BtnUp.Click += new EventHandler(OnClickUpButton);
UI\MobileControls\Design\Util\EditableTreeList.cs (11)
82BtnUp.AccessibleName = SR.GetString(SR.EditableTreeList_MoveUpName); 83BtnUp.AccessibleDescription = SR.GetString(SR.EditableTreeList_MoveUpDescription); 84BtnUp.Name = SR.GetString(SR.EditableTreeList_MoveUpName); 85BtnUp.Location = new System.Drawing.Point(182, 16); 86BtnUp.Size = new System.Drawing.Size(28, 27); 87BtnUp.Anchor = AnchorStyles.Top | AnchorStyles.Right;; 118this.Controls.Add(BtnUp); 124BtnUp.Image = GenericUI.SortUpIcon; 127BtnUp.Click += new EventHandler(MoveSelectedItemUp); 346BtnUp.Enabled = (selectedIndex > 0); 351BtnUp.Enabled = false;