PgErrorTable2.xaml.cs 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using System;
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.Net;
using FLY.Thick.Base.Client;
using Unity;
17 18 19
using System.ComponentModel;
using FLY.OBJComponents.Common;
using System.Collections.ObjectModel;
20 21 22 23 24 25 26 27

namespace FLY.Thick.Base.UI
{
    /// <summary>
    /// Page_ErrorTable.xaml 的交互逻辑
    /// </summary>
    public partial class PgErrorTable2 : Page
    {
28
        FLY.OBJComponents.IService.IWarningSystem2Service warningService;
29
        IUnityContainer container;
30 31 32

        ObservableCollection<FlyData_WarningHistory> ReasonList = new ObservableCollection<FlyData_WarningHistory>();
        ToDescriptionHandler toDescription;
33 34 35 36 37 38 39 40 41
        /// <summary>
        /// 
        /// </summary>
        public PgErrorTable2()
        {
            InitializeComponent();
        }


42
        //[InjectionMethod]
43
        public void Init(
44
            IUnityContainer container,
45 46
            FLY.OBJComponents.IService.IWarningSystem2Service warningService,
            ToDescriptionHandler toDescription = null
47
            )
48 49 50
        {
            this.container = container;
            this.warningService = warningService;
51 52
            this.toDescription = toDescription;

53
            this.DataContext = warningService;
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
            this.dgReason.ItemsSource = ReasonList;
            
            updateReasonList();

            warningService.PropertyChanged += WarningService_PropertyChanged;
            //warningService.ReasonList
        }

        private void WarningService_PropertyChanged(object sender, PropertyChangedEventArgs e)
        {
            if (e.PropertyName == nameof(warningService.ReasonList)) 
            {
                updateReasonList();
            }
        }

        void updateReasonList() 
        {
            ReasonList.Clear();
            if (warningService.ReasonList == null)
                return;
75

76 77 78 79 80 81 82 83 84 85 86
            for (int i = 0; i < warningService.ReasonList.Count(); i++) 
            {
                var reason = warningService.ReasonList[i];
                ReasonList.Add(new FlyData_WarningHistory()
                {
                    Time = reason.Time,
                    State = reason.State,
                    ErrCode = reason.ErrCode,
                    Description = toDescription == null ? reason.Description : toDescription(reason.ErrCode)
                });
            }
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        }
        private void button_back_Click(object sender, RoutedEventArgs e)
        {
            NavigationService.GoBack();
        }

        private void button_reset_click(object sender, RoutedEventArgs e)
        {
            warningService.Reset();
        }

        private void button_silence_click(object sender, RoutedEventArgs e)
        {
            warningService.Silence();
        }

        private void button_database_click(object sender, RoutedEventArgs e)
        {
            PgErrorAllTable p = container.Resolve<PgErrorAllTable>(
106 107 108
                    new Unity.Resolution.ParameterOverride("warning", warningService),
                    new Unity.Resolution.ParameterOverride("toDescription", toDescription)
                    );
109 110 111 112
            NavigationService.Navigate(p);
        }
    }
}