spc-kiosk-pb/Kiosk/Popup/SPC.Kiosk.Popup/StepInfoPopup.xaml.cs
2019-06-16 14:12:09 +09:00

135 lines
4.0 KiB
C#

using System;
using System.ComponentModel;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
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.Forms;
using System.Drawing;
using SPC.Kiosk.Base;
using SPC.Kiosk.Common;
using System.Windows.Threading;
using SPC.Kiosk.Popup.Model;
using SPC.Kiosk.Popup.ViewModel;
namespace SPC.Kiosk.Popup
{
/// <summary>
/// StepInfoPopup.xaml에 대한 상호 작용 논리
/// </summary>
public partial class StepInfoPopup : Window
{
#region [ Members ]
private int ScreenNo { get; set; } = 0;
private VmStepInfoPopup ViewModel { get; set; }
#endregion Members
#region [ Ctor ]
/// <summary>
/// Ctor
/// </summary>
public StepInfoPopup()
{
InitializeComponent();
this.ContentRendered += StepInfoPopup_ContentRendered;
this.Loaded += StepInfoPopup_Loaded;
this.Left = Screen.AllScreens[ScreenNo].WorkingArea.Left;
this.Top = Screen.AllScreens[ScreenNo].WorkingArea.Top;
this.Width = Screen.AllScreens[ScreenNo].Bounds.Width;
this.Height = Screen.AllScreens[ScreenNo].Bounds.Height;
}
#endregion Ctor
#region [ Methods ]
private void OpenWindow()
{
var OpenAnimations = Animations.GetOpenAnimation(this.FrameBase
, OpenCloseAnimationType.FullSizeUp
, this.FrameBase.Height
, 0.5
, 0.2);
if (OpenAnimations != null)
{
OpenAnimations.Begin();
}
}
private void CloseWindow()
{
var CloseAnimation = Animations.GetCloseAnimation(this.FrameBase
, OpenCloseAnimationType.FullSizeDown
, this.FrameBase.Height
, 0.5
, 0.2);
if (CloseAnimation != null)
{
CloseAnimation.Completed += CloseAnimation_Completed;
CloseAnimation.Begin();
}
}
#endregion Methods
#region [ Event Handlers ]
private void CloseAnimation_Completed(object sender, EventArgs e)
{
this.ContentRendered -= StepInfoPopup_ContentRendered;
this.Loaded -= StepInfoPopup_Loaded;
this.ViewModel.Dispose();
this.Close();
}
private void StepInfoPopup_ContentRendered(object sender, EventArgs e)
{
this.FrameBase.Width = 800;
this.FrameBase.Height = 540;
OpenWindow();
}
private void StepInfoPopup_Loaded(object sender, RoutedEventArgs e)
{
if (this.DataContext is VmStepInfoPopup viewModel)
{
ViewModel = viewModel;
ViewModel.PropertyChanged += ViewModel_PropertyChanged;
ViewModel.IsTimeoutPopup = false;
}
this.FrameBase.Width = 0;
this.FrameBase.Height = 0;
}
private void ViewModel_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
switch (e.PropertyName)
{
case "CanWindowClose":
if (this.ViewModel.CanWindowClose)
{
CloseWindow();
}
break;
}
}
#endregion Event Handlers
}
}