17 lines
332 B
C#
17 lines
332 B
C#
|
|
|
||
|
|
using System.Windows.Controls;
|
||
|
|
|
||
|
|
namespace DMS.WPF.Views.HandyDialogs
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Interaction logic for VariableEditorDialog.xaml
|
||
|
|
/// </summary>
|
||
|
|
public partial class VariableEditorDialog : UserControl
|
||
|
|
{
|
||
|
|
public VariableEditorDialog()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|