blob: b0701e56b87630f32d35ff5a4eb2435d636d520f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media;
namespace Tango.FSE.Diagnostics.Project.Widgets.Text
{
[Description("Text")]
public class TextWidgetSettings : DiagnosticsWidgetSettings
{
public override FrameworkElement GetView()
{
return new TextWidgetSettingsView();
}
}
}
|