blob: 1c2220e259ed00f84c46d2093d25f4bf75a9b82b (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Editors
{
/// <summary>
/// <para><img class="classImage" src="../Media/Configuration.png" /></para>
/// Represents a <see cref="FrameworkElementEditorConfiguration"/> configuration which can be saved or load from a file or stream.
/// </summary>
/// <seealso cref="ElementEditorConfiguration" />
[Serializable]
public class FrameworkElementEditorConfiguration : ElementEditorConfiguration
{
/// <summary>
/// Initializes a new instance of the <see cref="FrameworkElementEditorConfiguration"/> class.
/// </summary>
public FrameworkElementEditorConfiguration()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="FrameworkElementEditorConfiguration"/> class.
/// </summary>
/// <param name="baseConfiguration">The base configuration.</param>
public FrameworkElementEditorConfiguration(ElementEditorConfiguration baseConfiguration) : base(baseConfiguration)
{
}
/// <summary>
/// Gets or sets the element xaml string.
/// </summary>
public String ElementXaml { get; set; }
}
}
|