2 types derived from Button
System.Web (2)
UI\WebControls\DataControlButton.cs (1)
18internal sealed class DataControlButton : Button {
UI\WebParts\ZoneButton.cs (1)
14internal sealed class ZoneButton : Button {
17 instantiations of Button
System.Web (14)
UI\WebControls\ButtonColumn.cs (1)
240Button button = new Button();
UI\WebControls\ButtonField.cs (1)
231button = new Button();
UI\WebControls\ChangePassword.cs (3)
2690Button pushButton = new Button(); 2962Button pushButton = new Button(); 2968pushButton = new Button();
UI\WebControls\CommandField.cs (1)
522button = new Button();
UI\WebControls\CreateUserWizard.cs (2)
3083container.ContinuePushButton = new Button() { 3471Button button = new Button() {
UI\WebControls\EditCommandColumn.cs (1)
169Button button = new Button();
UI\WebControls\login.cs (1)
1835Button pushButton = new Button();
UI\WebControls\PasswordRecovery.cs (2)
2298Button pushButton = new Button(); 2614Button pushButton = new Button();
UI\WebControls\Wizard.cs (1)
3084Button button = new Button();
UI\WebParts\ImportCatalogPart.cs (1)
139_uploadButton = new Button();
System.Web.Extensions (3)
UI\WebControls\NextPreviousPagerField.cs (1)
490button = new Button();
UI\WebControls\NumericPagerField.cs (2)
324button = new Button(); 366button = new Button();
53 references to Button
System.Web (52)
UI\WebControls\Button.cs (12)
37/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.Button'/> class.</para> 67/// <para>Gets or sets the command associated with a <see cref='System.Web.UI.WebControls.Button'/> propogated in the <see langword='Command'/> event along with the <see cref='System.Web.UI.WebControls.Button.CommandArgument'/> 89/// the <see langword='Command'/> event with the associated <see cref='System.Web.UI.WebControls.Button.CommandName'/> 153/// <para>Gets or sets the text caption displayed on the <see cref='System.Web.UI.WebControls.Button'/> .</para> 213/// <para>Occurs when the <see cref='System.Web.UI.WebControls.Button'/> is clicked.</para> 231/// <para>Occurs when the <see cref='System.Web.UI.WebControls.Button'/> is clicked.</para> 249/// <para>Adds the attributes of the <see cref='System.Web.UI.WebControls.Button'/> control to the output stream for rendering 352/// <para>Raises the <see langword='Click '/>event of a <see cref='System.Web.UI.WebControls.Button'/> 362/// <para>Raises the <see langword='Command '/>event of a <see cref='System.Web.UI.WebControls.Button'/> 400/// <para>Raises events for the <see cref='System.Web.UI.WebControls.Button'/> 410/// <para>Raises events for the <see cref='System.Web.UI.WebControls.Button'/>
UI\WebControls\ButtonColumn.cs (6)
19/// <para>Creates a column with a set of <see cref='System.Web.UI.WebControls.Button'/> 81/// <para>Gets or sets the command to perform when this <see cref='System.Web.UI.WebControls.Button'/> 150/// <para>Gets or sets the caption text displayed on the <see cref='System.Web.UI.WebControls.Button'/> 240Button button = new Button(); 291Debug.Assert(boundControl is Button, "Expected the bound control to be a Button"); 292((Button)boundControl).Text = dataValue;
UI\WebControls\ButtonField.cs (3)
18/// <para>Creates a field with a set of <see cref='System.Web.UI.WebControls.Button'/> 34/// <para>Gets or sets the command to perform when this <see cref='System.Web.UI.WebControls.Button'/> 134/// <para>Gets or sets the caption text displayed on the <see cref='System.Web.UI.WebControls.Button'/>
UI\WebControls\Calendar.cs (1)
828/// user clicks on the next or previous month <see cref='System.Web.UI.WebControls.Button'/> controls on the title.</para>
UI\WebControls\ChangePassword.cs (11)
2330Button pushButton = container.ChangePasswordPushButton; 2331Button cancelPushButton = container.CancelPushButton; 2505Button pushButton = container.ContinuePushButton; 2690Button pushButton = new Button(); 2760private Button _continuePushButton; 2788internal Button ContinuePushButton { 2962Button pushButton = new Button(); 3191private Button _changePasswordPushButton; 3194private Button _cancelPushButton; 3245internal Button CancelPushButton { 3272internal Button ChangePasswordPushButton {
UI\WebControls\CreateUserWizard.cs (2)
3471Button button = new Button() { 3780internal Button ContinuePushButton { get; set; }
UI\WebControls\EditCommandColumn.cs (1)
169Button button = new Button();
UI\WebControls\login.cs (4)
1555Button pushButton = container.PushButton; 1835Button pushButton = new Button(); 2320private Button _pushButton; 2484internal Button PushButton {
UI\WebControls\PasswordRecovery.cs (8)
1887Button pushButton = container.PushButton; 2086Button pushButton = container.PushButton; 2298Button pushButton = new Button(); 2614Button pushButton = new Button(); 2811private Button _pushButton; 2919public Button PushButton { 3025private Button _pushButton; 3099public Button PushButton {
UI\WebControls\Wizard.cs (3)
1408var ctrlButton = button as Button; 3084Button button = new Button();
UI\WebParts\ImportCatalogPart.cs (1)
32private Button _uploadButton;
System.Web.Extensions (1)
UI\WebControls\NextPreviousPagerField.cs (1)
491((Button)button).Enabled = enabled;