using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; 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; namespace FLY.IntegratedControl.UI.Server { /// /// MainWindow.xaml 的交互逻辑 /// public partial class MainWindow : Window { FLY.AppHelper.WindowNotifyIconHelper notifyiconhelper; FLY.IntegratedControl.Server.TDGage mTDGage; public MainWindow() { InitializeComponent(); this.Title = (new Misc.Ver() { SrcType = typeof(MainWindow) }).ToString(); notifyiconhelper = new AppHelper.WindowNotifyIconHelper(this, this.Title); this.Hide(); FObjBase.PollModule.Current.Start(); mTDGage = new FLY.IntegratedControl.Server.TDGage("Gage1"); FLY.OBJComponents.Server.PLCProxySystem plsos = mTDGage.mData.PLCos as FLY.OBJComponents.Server.PLCProxySystem; grid_plcos.DataContext = plsos; grid_plc.DataContext = plsos.PLCs[0]; } } }