1 write to BtnAdd
System.Web.Mobile (1)
UI\MobileControls\Design\Util\EditableTreeList.cs (1)
56this.BtnAdd = new System.Windows.Forms.Button();
13 references to BtnAdd
System.Web.Mobile (13)
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (2)
118_filterList.BtnAdd.Text = SR.GetString(SR.DeviceFilterEditorDialog_NewDeviceFilter); 196_filterList.BtnAdd.Click += new EventHandler(OnClickAddButton);
UI\MobileControls\Design\ListComponentEditorPage.cs (2)
58TreeList.BtnAdd.Text = AddButtonTitle; 63TreeList.BtnAdd.Click += new EventHandler(OnClickAddButton);
UI\MobileControls\Design\Util\EditableTreeList.cs (9)
103BtnAdd.AccessibleName = SR.GetString(SR.EditableTreeList_AddName); 104BtnAdd.AccessibleDescription = SR.GetString(SR.EditableTreeList_AddDescription); 105BtnAdd.Name = SR.GetString(SR.EditableTreeList_AddName); 106BtnAdd.Location = new System.Drawing.Point(0, 168); 107BtnAdd.Size = new System.Drawing.Size(178, 25); 108BtnAdd.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; 121this.Controls.Add(BtnAdd); 143BtnAdd.Visible = false; 144int offset = 4 + BtnAdd.Height;