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

« back to all changes in this revision

Viewing changes to class/Microsoft.SilverlightControls/Controls/Data/src/DataGrid/DataGridRowDetailsEventArgs.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 DataGridRowDetailsEventArgs : EventArgs 
 
9
    {
 
10
        public DataGridRowDetailsEventArgs(FrameworkElement detailsElement) 
 
11
        {
 
12
            this.DetailsElement = detailsElement;
 
13
        } 
 
14
 
 
15
        public FrameworkElement DetailsElement
 
16
        { 
 
17
            get; 
 
18
            private set;
 
19
        } 
 
20
    }
 
21
}