1 type derived from ImageButton
System.Web (1)
UI\WebControls\DataControlImageButton.cs (1)
18internal sealed class DataControlImageButton : ImageButton {
17 instantiations of ImageButton
System.Web (15)
UI\WebControls\ButtonField.cs (1)
242button = new ImageButton();
UI\WebControls\ChangePassword.cs (3)
2684ImageButton imageButton = new ImageButton(); 2950ImageButton imageButton = new ImageButton(); 2956imageButton = new ImageButton();
UI\WebControls\Column.cs (1)
310ImageButton sortButton = new ImageButton();
UI\WebControls\CommandField.cs (1)
534button = new ImageButton();
UI\WebControls\CreateUserWizard.cs (2)
3089container.ContinueImageButton = new ImageButton() { 3458ImageButton imageButton = new ImageButton() {
UI\WebControls\DataControlField.cs (1)
482sortButton = new ImageButton();
UI\WebControls\login.cs (1)
1829ImageButton imageButton = new ImageButton();
UI\WebControls\loginstatus.cs (2)
242_logInImageButton = new ImageButton(); 244_logOutImageButton = new ImageButton();
UI\WebControls\PasswordRecovery.cs (2)
2292ImageButton imageButton = new ImageButton(); 2608ImageButton imageButton = new ImageButton();
UI\WebControls\Wizard.cs (1)
3074ImageButton imageButton = new ImageButton();
System.Web.Extensions (2)
UI\WebControls\NextPreviousPagerField.cs (1)
495button = new ImageButton();
UI\WebControls\NumericPagerField.cs (1)
370button = new ImageButton();
71 references to ImageButton
System.Web (66)
UI\WebControls\ButtonField.cs (1)
245((ImageButton)button).ImageUrl = ImageUrl;
UI\WebControls\ChangePassword.cs (11)
2328ImageButton imageButton = container.ChangePasswordImageButton; 2329ImageButton cancelImageButton = container.CancelImageButton; 2504ImageButton imageButton = container.ContinueImageButton; 2684ImageButton imageButton = new ImageButton(); 2762private ImageButton _continueImageButton; 2770internal ImageButton ContinueImageButton { 2950ImageButton imageButton = new ImageButton(); 3189private ImageButton _changePasswordImageButton; 3192private ImageButton _cancelImageButton; 3227internal ImageButton CancelImageButton { 3254internal ImageButton ChangePasswordImageButton {
UI\WebControls\Column.cs (1)
310ImageButton sortButton = new ImageButton();
UI\WebControls\CommandField.cs (1)
537((ImageButton)button).ImageUrl = imageUrl;
UI\WebControls\CreateUserWizard.cs (9)
2896var createUserImageButton = createUserButton as ImageButton; 2913var previousImageButton = previousButton as ImageButton; 2925var cancelImageButton = cancelButton as ImageButton; 3443((ImageButton)source).Visible = false; 3458ImageButton imageButton = new ImageButton() { 3782internal ImageButton ContinueImageButton { get; set; }
UI\WebControls\DataControlField.cs (1)
475ImageButton sortButton;
UI\WebControls\FormView.cs (12)
1581((ImageButton)firstButton).ImageUrl = firstPageImageUrl; 1582((ImageButton)firstButton).AlternateText = HttpUtility.HtmlDecode(pagerSettings.FirstPageText); 1598((ImageButton)prevButton).ImageUrl = prevPageImageUrl; 1599((ImageButton)prevButton).AlternateText = HttpUtility.HtmlDecode(pagerSettings.PreviousPageText); 1616((ImageButton)nextButton).ImageUrl = nextPageImageUrl; 1617((ImageButton)nextButton).AlternateText = HttpUtility.HtmlDecode(pagerSettings.NextPageText); 1634((ImageButton)lastButton).ImageUrl = lastPageImageUrl; 1635((ImageButton)lastButton).AlternateText = HttpUtility.HtmlDecode(pagerSettings.LastPageText); 1701((ImageButton)firstButton).ImageUrl = firstPageImageUrl; 1702((ImageButton)firstButton).AlternateText = HttpUtility.HtmlDecode(pagerSettings.FirstPageText); 1763((ImageButton)lastButton).ImageUrl = lastPageImageUrl; 1764((ImageButton)lastButton).AlternateText = HttpUtility.HtmlDecode(pagerSettings.LastPageText);
UI\WebControls\ImageButton.cs (12)
44/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.ImageButton'/> class.</para> 51/// <para>Gets or sets the command associated with the <see cref='System.Web.UI.WebControls.ImageButton'/> that is propogated in the <see langword='Command'/> event along with the <see cref='System.Web.UI.WebControls.ImageButton.CommandArgument'/> 74/// <see cref='System.Web.UI.WebControls.ImageButton.CommandName'/> 230/// <para>Represents the method that will handle the <see langword='ImageClick'/> event of an <see cref='System.Web.UI.WebControls.ImageButton'/>.</para> 247/// <para>Represents the method that will handle the <see langword='Click'/> event of an <see cref='System.Web.UI.WebControls.ImageButton'/>.</para> 260/// <para>Represents the method that will handle the <see langword='Command'/> event of an <see cref='System.Web.UI.WebControls.ImageButton'/>.</para> 278/// <para>Adds the attributes of an <see cref='System.Web.UI.WebControls.ImageButton'/> to the output 378/// <para>Processes posted data for the <see cref='System.Web.UI.WebControls.ImageButton'/> control.</para> 386/// <para>Processes posted data for the <see cref='System.Web.UI.WebControls.ImageButton'/> control.</para> 460/// <para>Raises events on post back for the <see cref='System.Web.UI.WebControls.ImageButton'/> 470/// <para>Raises events on post back for the <see cref='System.Web.UI.WebControls.ImageButton'/>
UI\WebControls\login.cs (4)
1554ImageButton imageButton = container.ImageButton; 1829ImageButton imageButton = new ImageButton(); 2312private ImageButton _imageButton; 2407internal ImageButton ImageButton {
UI\WebControls\loginstatus.cs (2)
32private ImageButton _logInImageButton; 34private ImageButton _logOutImageButton;
UI\WebControls\PasswordRecovery.cs (8)
1886ImageButton imageButton = container.ImageButton; 2085ImageButton imageButton = container.ImageButton; 2292ImageButton imageButton = new ImageButton(); 2608ImageButton imageButton = new ImageButton(); 2808private ImageButton _imageButton; 2892public ImageButton ImageButton { 3022private ImageButton _imageButton; 3072public ImageButton ImageButton {
UI\WebControls\Wizard.cs (4)
2314ImageButton imageButton = button as ImageButton; 3061((ImageButton)source).Visible = false; 3074ImageButton imageButton = new ImageButton();
System.Web.Extensions (5)
UI\WebControls\NextPreviousPagerField.cs (3)
496((ImageButton)button).ImageUrl = imageUrl; 497((ImageButton)button).Enabled = enabled; 498((ImageButton)button).AlternateText = HttpUtility.HtmlDecode(buttonText);
UI\WebControls\NumericPagerField.cs (2)
371((ImageButton)button).ImageUrl = imageUrl; 372((ImageButton)button).AlternateText = HttpUtility.HtmlDecode(buttonText);