You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,69 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="DataControlImageButton.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls {
|
||||
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Web.Util;
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// Derived version of ImageButton used within a DataControl.
|
||||
/// </devdoc>
|
||||
[SupportsEventValidation]
|
||||
internal sealed class DataControlImageButton : ImageButton {
|
||||
|
||||
IPostBackContainer _container;
|
||||
string _callbackArgument;
|
||||
bool _enableCallback;
|
||||
|
||||
internal DataControlImageButton(IPostBackContainer container) {
|
||||
_container = container;
|
||||
}
|
||||
|
||||
public override bool CausesValidation {
|
||||
get {
|
||||
return false;
|
||||
}
|
||||
set {
|
||||
throw new NotSupportedException(SR.GetString(SR.CannotSetValidationOnDataControlButtons));
|
||||
}
|
||||
}
|
||||
|
||||
internal void EnableCallback(string argument) {
|
||||
_enableCallback = true;
|
||||
_callbackArgument = argument;
|
||||
}
|
||||
|
||||
protected sealed override PostBackOptions GetPostBackOptions() {
|
||||
if (_container != null) {
|
||||
return _container.GetPostBackOptions(this);
|
||||
}
|
||||
|
||||
return base.GetPostBackOptions();
|
||||
}
|
||||
|
||||
protected internal override void Render(HtmlTextWriter writer) {
|
||||
SetCallbackProperties();
|
||||
base.Render(writer);
|
||||
}
|
||||
|
||||
private void SetCallbackProperties() {
|
||||
if (_enableCallback) {
|
||||
ICallbackContainer _callbackContainer = _container as ICallbackContainer;
|
||||
if (_callbackContainer != null) {
|
||||
string callbackScript = _callbackContainer.GetCallbackScript(this, _callbackArgument);
|
||||
if (!String.IsNullOrEmpty(callbackScript)) {
|
||||
this.OnClientClick = callbackScript;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user