You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
54
external/referencesource/System.Web/UI/WebControls/FormViewModeEventArgs.cs
vendored
Normal file
54
external/referencesource/System.Web/UI/WebControls/FormViewModeEventArgs.cs
vendored
Normal file
@ -0,0 +1,54 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="FormViewModeEventArgs.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls {
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Provides data for the <see langword='FormViewMode'/> event.</para>
|
||||
/// </devdoc>
|
||||
public class FormViewModeEventArgs : CancelEventArgs {
|
||||
|
||||
private FormViewMode _mode;
|
||||
private bool _cancelingEdit;
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Initializes a new instance of <see cref='System.Web.UI.WebControls.FormViewModeEventArgs'/> class.</para>
|
||||
/// </devdoc>
|
||||
public FormViewModeEventArgs(FormViewMode mode, bool cancelingEdit) : base(false) {
|
||||
this._mode = mode;
|
||||
this._cancelingEdit = cancelingEdit;
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Gets a bool in the <see cref='System.Web.UI.WebControls.FormView'/> indicating whether the mode change is the result of a cancel command.
|
||||
/// This property is read-only.</para>
|
||||
/// </devdoc>
|
||||
public bool CancelingEdit {
|
||||
get {
|
||||
return _cancelingEdit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Gets a FormViewMode in the <see cref='System.Web.UI.WebControls.FormView'/>. This property is read-only.</para>
|
||||
/// </devdoc>
|
||||
public FormViewMode NewMode {
|
||||
get {
|
||||
return _mode;
|
||||
}
|
||||
set {
|
||||
_mode = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user