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,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