| 12345678910111213141516171819202122232425262728293031323334353637383940 | using System;using System.Collections.ObjectModel;using System.Windows;using System.Windows.Controls;using System.Windows.Controls.Primitives;using System.Windows.Data;using Aitex.Common.Util;using Aitex.Core.UI.MVVM;using MECF.Framework.Common.IOCore;using VirgoSimulator.Instances;namespace VirgoSimulator.Views{    /// <summary>    /// IoView.xaml 的交互逻辑    /// </summary>    public partial class SimulatorIo2View : UserControl    {        public SimulatorIo2View()        {            InitializeComponent();            var ioFileName = "_ioDefineVirgo.xml";            if (AppSettingHelper.IsVirgoR()) ioFileName = "_ioDefineVirgo_R.xml";            DataContext = new IoViewModel(6732, "PMB.PLC", PathManager.GetCfgDir() + ioFileName, "PMB");            this.IsVisibleChanged += IOView_IsVisibleChanged;        }        private void IOView_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)        {            if (this.DataContext == null)            {            }            (DataContext as TimerViewModelBase).EnableTimer(IsVisible);        }    } }
 |