~ubuntu-branches/ubuntu/karmic/moon/karmic

« back to all changes in this revision

Viewing changes to class/Microsoft.SilverlightControls/Controls/Data/src/DataGrid/DataGridCellCancelEventArgs.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-14 12:01:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090214120108-06539vb25vhbd8bn
Tags: upstream-1.0
Import upstream version 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright © Microsoft Corporation. 
 
2
// This source is subject to the Microsoft Source License for Silverlight Controls (March 2008 Release).
 
3
// Please see http://go.microsoft.com/fwlink/?LinkID=111693 for details.
 
4
// All other rights reserved. 
 
5
 
 
6
namespace System.Windows.Controlsb1
 
7
 
8
    public class DataGridCellCancelEventArgs : DataGridCellEventArgs 
 
9
    {
 
10
        public DataGridCellCancelEventArgs(DataGridColumnBase dataGridColumn, 
 
11
                                           DataGridRow dataGridRow,
 
12
                                           FrameworkElement element) : base(dataGridColumn, dataGridRow, element)
 
13
        { 
 
14
        }
 
15
 
 
16
        #region Public Properties 
 
17
 
 
18
        public bool Cancel
 
19
        { 
 
20
            get;
 
21
            set;
 
22
        } 
 
23
 
 
24
        #endregion Public Properties
 
25
    } 
 
26