spc-kiosk-pb/Kiosk/Common/SPC.Kiosk.Common/Controls/WaitForm.xaml.cs

49 lines
1.0 KiB
C#
Raw Normal View History

2019-06-16 05:12:09 +00:00
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
}
}