spc-kiosk-pb/Kiosk/Common/SPC.Kiosk.Common/Controls/WaitForm.xaml.cs
2019-06-16 14:12:09 +09:00

49 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Forms;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Media.Animation;
using System.Threading.Tasks;
using System.Windows.Threading;
using System.Threading;
using System.ComponentModel;
namespace SPC.Kiosk.Common
{
/// <summary>
/// WaitForm.xaml에 대한 상호 작용 논리
/// </summary>
public partial class WaitForm : Window
{
#region [ Members ]
#endregion Members
#region [ Ctor / Etc ]
/// <summary>
/// Ctor
/// </summary>
public WaitForm()
{
InitializeComponent();
}
#endregion Ctor / Etc
#region [ Event Handlers ]
#endregion Event Handlers
}
}