Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/ObservableUIElementCollection.cs @ 13401

Last change on this file since 13401 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 530 bytes
Line 
1using System;
2using System.Windows;
3using System.Windows.Controls;
4
5namespace 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.