Rev | Line | |
---|
[12503] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Windows.Automation.Peers;
|
---|
| 6 |
|
---|
| 7 | namespace Microsoft.Research.DynamicDataDisplay.Common
|
---|
| 8 | {
|
---|
| 9 | public class PlotterAutomationPeer : FrameworkElementAutomationPeer
|
---|
| 10 | {
|
---|
| 11 | public PlotterAutomationPeer(Plotter owner)
|
---|
| 12 | : base(owner)
|
---|
| 13 | {
|
---|
| 14 |
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | protected override AutomationControlType GetAutomationControlTypeCore()
|
---|
| 18 | {
|
---|
| 19 | return AutomationControlType.Custom;
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | protected override string GetClassNameCore()
|
---|
| 23 | {
|
---|
| 24 | return "Plotter";
|
---|
| 25 | }
|
---|
| 26 | }
|
---|
| 27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.