source:
branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/ObservableUIElementCollection.cs
@
13348
Last change on this file since 13348 was 12503, checked in by aballeit, 10 years ago | |
---|---|
File size: 530 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Windows; |
3 | using System.Windows.Controls; |
4 | |
5 | namespace Microsoft.Research.DynamicDataDisplay |
6 | { |
7 | public sealed class UIElementCollectionChangedEventArgs : EventArgs |
8 | { |
9 | private readonly UIElement element; |
10 | |
11 | public UIElementCollectionChangedEventArgs(UIElement element) |
12 | { |
13 | this.element = element; |
14 | } |
15 | |
16 | public UIElement Element |
17 | { |
18 | get |
19 | { |
20 | return element; |
21 | } |
22 | } |
23 | } |
24 | } |
Note: See TracBrowser
for help on using the repository browser.