2 types derived from Button
System.Web (2)
UI\WebControls\DataControlButton.cs (1)
18
internal sealed class DataControlButton :
Button
{
UI\WebParts\ZoneButton.cs (1)
14
internal sealed class ZoneButton :
Button
{
17 instantiations of Button
System.Web (14)
UI\WebControls\ButtonColumn.cs (1)
240
Button button = new
Button
();
UI\WebControls\ButtonField.cs (1)
231
button = new
Button
();
UI\WebControls\ChangePassword.cs (3)
2690
Button pushButton = new
Button
();
2962
Button pushButton = new
Button
();
2968
pushButton = new
Button
();
UI\WebControls\CommandField.cs (1)
522
button = new
Button
();
UI\WebControls\CreateUserWizard.cs (2)
3083
container.ContinuePushButton = new
Button
() {
3471
Button button = new
Button
() {
UI\WebControls\EditCommandColumn.cs (1)
169
Button button = new
Button
();
UI\WebControls\login.cs (1)
1835
Button pushButton = new
Button
();
UI\WebControls\PasswordRecovery.cs (2)
2298
Button pushButton = new
Button
();
2614
Button pushButton = new
Button
();
UI\WebControls\Wizard.cs (1)
3084
Button button = new
Button
();
UI\WebParts\ImportCatalogPart.cs (1)
139
_uploadButton = new
Button
();
System.Web.Extensions (3)
UI\WebControls\NextPreviousPagerField.cs (1)
490
button = new
Button
();
UI\WebControls\NumericPagerField.cs (2)
324
button = new
Button
();
366
button = 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
'/>
240
Button
button = new Button();
291
Debug.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)
2330
Button
pushButton = container.ChangePasswordPushButton;
2331
Button
cancelPushButton = container.CancelPushButton;
2505
Button
pushButton = container.ContinuePushButton;
2690
Button
pushButton = new Button();
2760
private
Button
_continuePushButton;
2788
internal
Button
ContinuePushButton {
2962
Button
pushButton = new Button();
3191
private
Button
_changePasswordPushButton;
3194
private
Button
_cancelPushButton;
3245
internal
Button
CancelPushButton {
3272
internal
Button
ChangePasswordPushButton {
UI\WebControls\CreateUserWizard.cs (2)
3471
Button
button = new Button() {
3780
internal
Button
ContinuePushButton { get; set; }
UI\WebControls\EditCommandColumn.cs (1)
169
Button
button = new Button();
UI\WebControls\login.cs (4)
1555
Button
pushButton = container.PushButton;
1835
Button
pushButton = new Button();
2320
private
Button
_pushButton;
2484
internal
Button
PushButton {
UI\WebControls\PasswordRecovery.cs (8)
1887
Button
pushButton = container.PushButton;
2086
Button
pushButton = container.PushButton;
2298
Button
pushButton = new Button();
2614
Button
pushButton = new Button();
2811
private
Button
_pushButton;
2919
public
Button
PushButton {
3025
private
Button
_pushButton;
3099
public
Button
PushButton {
UI\WebControls\Wizard.cs (3)
1408
var
ctrlButton = button as
Button
;
3084
Button
button = new Button();
UI\WebParts\ImportCatalogPart.cs (1)
32
private
Button
_uploadButton;
System.Web.Extensions (1)
UI\WebControls\NextPreviousPagerField.cs (1)
491
((
Button
)button).Enabled = enabled;