1 write to BtnRemove
System.Web.Mobile (1)
UI\MobileControls\Design\Util\EditableTreeList.cs (1)
60this.BtnRemove = new System.Windows.Forms.Button();
15 references to BtnRemove
System.Web.Mobile (15)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (2)
112_appliedFiltersList.BtnRemove.Click -= _appliedFiltersList.RemoveHandler; 113_appliedFiltersList.BtnRemove.Click += new EventHandler(OnRemove);
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (1)
197_filterList.BtnRemove.Click += new EventHandler(OnClickRemoveButton);
UI\MobileControls\Design\ListComponentEditorPage.cs (1)
64TreeList.BtnRemove.Click += new EventHandler(OnClickRemoveButton);
UI\MobileControls\Design\Util\EditableTreeList.cs (11)
96BtnRemove.AccessibleName = SR.GetString(SR.EditableTreeList_DeleteName); 97BtnRemove.AccessibleDescription = SR.GetString(SR.EditableTreeList_DeleteDescription); 98BtnRemove.Name = SR.GetString(SR.EditableTreeList_DeleteName); 99BtnRemove.Location = new System.Drawing.Point(182, 136); 100BtnRemove.Size = new System.Drawing.Size(28, 27); 101BtnRemove.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; 120this.Controls.Add(BtnRemove); 125BtnRemove.Image = GenericUI.DeleteIcon; 130BtnRemove.Click += RemoveHandler; 146BtnRemove.Top += offset; 343BtnRemove.Enabled = anItemIsSelected;