1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- 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 Aitex.Core.UI.MVVM;
- using Aitex.Triton160.UI.ViewModel;
- namespace Aitex.Triton160.UI.Views
- {
- /// <summary>
- /// Interaction logic for RecipeMonitorView.xaml
- /// </summary>
- public partial class RecipeMonitorView : UserControl
- {
- public RecipeMonitorView()
- {
- InitializeComponent();
- this.DataContext = new RecipeMonitorViewModel();
- ((TimerViewModelBase)DataContext).EnableTimer(true);
- this.IsVisibleChanged += new DependencyPropertyChangedEventHandler(ProcessView_IsVisibleChanged);
- }
- void ProcessView_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
- {
-
- }
- }
- }
|