committed by
GitHub
2 changed files with 27 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
using Avalonia.Automation.Peers; |
||||
|
|
||||
|
namespace Avalonia.Controls.Automation.Peers |
||||
|
{ |
||||
|
public class ImageAutomationPeer : ControlAutomationPeer |
||||
|
{ |
||||
|
public ImageAutomationPeer(Control owner) : base(owner) |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
override protected string GetClassNameCore() |
||||
|
{ |
||||
|
return "Image"; |
||||
|
} |
||||
|
|
||||
|
override protected AutomationControlType GetAutomationControlTypeCore() |
||||
|
{ |
||||
|
return AutomationControlType.Image; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue