-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIVisualInstructor.cs
More file actions
73 lines (58 loc) · 1.81 KB
/
Copy pathIVisualInstructor.cs
File metadata and controls
73 lines (58 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (c) 2023, Phoenix Contact GmbH & Co. KG
// Licensed under the Apache License, Version 2.0
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System.ComponentModel;
using System.Runtime.Serialization;
using Moryx.AbstractionLayer.Resources;
using Moryx.Serialization;
namespace Moryx.Resources.Samples
{
public interface IVisualInstructor : IResource
{
void Show(string foo);
}
[ResourceRegistration]
public class VisualInstructor : Resource, IVisualInstructor
{
[DataMember]
public string ClientId { get; set; }
[ResourceReference(ResourceRelationType.Extension, ResourceReferenceRole.Source)]
public IReferences<Resource> Users { get; set; }
public VisualInstructor()
{
Descriptor = new InstructorDescriptor(this);
}
public void Show(string foo)
{
}
public override object Descriptor { get; }
[EntrySerialize]
protected class InstructorDescriptor
{
private readonly VisualInstructor _instructor;
public InstructorDescriptor(VisualInstructor instructor)
{
_instructor = instructor;
}
[EntrySerialize]
public string ClientId
{
get { return _instructor.ClientId; }
set { _instructor.ClientId = value; }
}
public void Show(string foo)
{
_instructor.Show(foo);
}
[DisplayName("Clear Instructions")]
public void Clear()
{
_instructor.Show(string.Empty);
}
}
}
[ResourceRegistration]
public class AwesomeInstructor : VisualInstructor
{
}
}