Line | |
---|
1 | using System;
|
---|
2 | using System.Windows;
|
---|
3 |
|
---|
4 | namespace Microsoft.Research.DynamicDataDisplay.DataSources
|
---|
5 | {
|
---|
6 | /// <summary>Data source that returns sequence of 2D points.</summary>
|
---|
7 | public interface IPointDataSource
|
---|
8 | {
|
---|
9 |
|
---|
10 | /// <summary>Returns object to enumerate points in source.</summary>
|
---|
11 | IPointEnumerator GetEnumerator(DependencyObject context);
|
---|
12 |
|
---|
13 | /// <summary>This event is raised when contents of source are changed.</summary>
|
---|
14 | event EventHandler DataChanged;
|
---|
15 | }
|
---|
16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.