add - 门体发泡添加发泡机数据采集

dev
wenjy 1 year ago
parent a670415572
commit f7d77c366f

@ -79,6 +79,9 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Update="Views\FoamMachinesPageView.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\StatisticsPageView.xaml.cs"> <Compile Update="Views\StatisticsPageView.xaml.cs">
<SubType>Code</SubType> <SubType>Code</SubType>
</Compile> </Compile>

@ -12,6 +12,9 @@
</Compile> </Compile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Page Update="Views\FoamMachinesPageView.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Views\IndexPageView.xaml"> <Page Update="Views\IndexPageView.xaml">
<SubType>Designer</SubType> <SubType>Designer</SubType>
</Page> </Page>

@ -0,0 +1,261 @@
using Admin.Core.Common.Helper;
using Admin.Core.IService;
using Admin.Core.Model;
using Aucma.Core.DoorFoam.Models;
using Aucma.Core.HwPLc;
using NetTaste;
using NPOI.Util;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Documents;
namespace Aucma.Core.DoorFoam.Business
{
/// <summary>
/// 采集发泡机数据
/// </summary>
public class CollectionFoamMachine
{
private static System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding();
List<FoamMachinesModel> foamMachinesList = new List<FoamMachinesModel>();
private static BoxLastShotRecord tempLastRecord = null;
public void startCollect()
{
Task.Run( () =>
{
Task.Delay(2000);
//Thread.Sleep(6000);
var obj = PlcHelper.siemensList.FirstOrDefault(d => d.EquipName.Equals("foamMachinePlc"));
if (obj != null)
{
ReadEquipSystem(obj, "DB50.388"); //采集1系统
//ReadEquipSystem(obj, "DB50.642"); //采集2系统
//ReadGunData(obj, "DB50.896"); //A1枪数据
//ReadGunData(obj, "DB50.1084"); //A1枪数据
//ReadGunData(obj, "DB50.1272"); //A1枪数据
//ReadGunData(obj, "DB50.1460"); //A1枪数据
}
});
}
/// <summary>
/// 采集设备系统参数
/// </summary>
/// <returns></returns>
static void ReadEquipSystem(HwPLc.PlcModel obj, string startStr)
{
if (obj == null && !obj.plc.IsConnected) return;
if (obj.plc.IsConnected)
{
FoamMachinesModel mode=new FoamMachinesModel();
byte[] info = obj.plc.Read(startStr, 170);
int temp1 = judgeStatus(ByteArrayToBinary(info.Skip(0).Take(1).ToArray()));
int temp2 = judgeStatus(ByteArrayToBinary(info.Skip(1).Take(1).ToArray()));
float temp3 = byteToFloat(info.Skip(2).Take(4).ToArray());
float temp4 = byteToFloat(info.Skip(14).Take(4).ToArray());
float temp5 = byteToFloat(info.Skip(18).Take(4).ToArray());
float temp6 = byteToFloat(info.Skip(22).Take(4).ToArray());
float temp7 = byteToFloat(info.Skip(34).Take(4).ToArray());
float temp8 = byteToFloat(info.Skip(38).Take(4).ToArray());
float temp9 = byteToFloat(info.Skip(42).Take(4).ToArray());
float temp10 = byteToFloat(info.Skip(82).Take(4).ToArray());
float temp11 = byteToFloat(info.Skip(94).Take(4).ToArray());
float temp12 = byteToFloat(info.Skip(98).Take(4).ToArray());
float temp13 = byteToFloat(info.Skip(102).Take(4).ToArray());
float temp14 = byteToFloat(info.Skip(114).Take(4).ToArray());
float temp15 = byteToFloat(info.Skip(118).Take(4).ToArray());
float temp16 = byteToFloat(info.Skip(122).Take(4).ToArray());
float temp17 = byteToFloat(info.Skip(162).Take(4).ToArray());
float temp18 = byteToFloat(info.Skip(166).Take(4).ToArray());
}
}
/// <summary>
/// 每一枪数据 ---A1,B1,A2,B2
/// </summary>
/// <returns></returns>
static void ReadGunData(HwPLc.PlcModel obj, string startStr)
{
if (obj == null && !obj.plc.IsConnected) return;
if (obj.plc.IsConnected)
{
byte[] info = obj.plc.Read(startStr, 88);
float temp1 = byteToFloat(info.Skip(0).Take(4).ToArray());
float temp2 = byteToFloat(info.Skip(4).Take(4).ToArray());
float temp3 = byteToFloat(info.Skip(8).Take(4).ToArray());
float temp4 = byteToFloat(info.Skip(12).Take(4).ToArray());
float temp5 = byteToFloat(info.Skip(16).Take(4).ToArray());
float temp6 = byteToFloat(info.Skip(20).Take(4).ToArray());
float temp7 = byteToFloat(info.Skip(24).Take(4).ToArray());
float temp8 = byteToFloat(info.Skip(28).Take(4).ToArray());
short temp9 = short.Parse(StringChange.bytesToHexStr(info.Skip(36).Take(2).ToArray(), 2), System.Globalization.NumberStyles.HexNumber);
int temp10 = int.Parse(StringChange.bytesToHexStr(info.Skip(38).Take(4).ToArray(), 4), System.Globalization.NumberStyles.HexNumber);
float temp11 = byteToFloat(info.Skip(42).Take(4).ToArray());
float temp12 = byteToFloat(info.Skip(46).Take(4).ToArray());
float temp13 = byteToFloat(info.Skip(50).Take(4).ToArray());
float temp14 = byteToFloat(info.Skip(54).Take(4).ToArray());
int temp15 = int.Parse(StringChange.bytesToHexStr(info.Skip(58).Take(4).ToArray(), 4), System.Globalization.NumberStyles.HexNumber);
int temp16 = int.Parse(StringChange.bytesToHexStr(info.Skip(62).Take(4).ToArray(), 4), System.Globalization.NumberStyles.HexNumber);
float temp17 = byteToFloat(info.Skip(66).Take(4).ToArray());
float temp18 = byteToFloat(info.Skip(70).Take(4).ToArray());
int temp19 = int.Parse(StringChange.bytesToHexStr(info.Skip(74).Take(4).ToArray(), 4), System.Globalization.NumberStyles.HexNumber);
int temp20 = int.Parse(StringChange.bytesToHexStr(info.Skip(78).Take(4).ToArray(), 4), System.Globalization.NumberStyles.HexNumber);
int temp21 = int.Parse(StringChange.bytesToHexStr(info.Skip(82).Take(4).ToArray(), 4), System.Globalization.NumberStyles.HexNumber);
int temp22 = judgeStatus(ByteArrayToBinary(info.Skip(87).Take(1).ToArray()));
}
}
///// <summary>
///// 采集最后一枪数据
///// </summary>
///// <returns></returns>
//public async Task CollectLast()
//{
// var obj = PlcHelper.siemensList.FirstOrDefault(d => d.EquipName.Equals("Plc1"));
// if (obj != null && obj.plc.IsConnected)
// {
// BoxLastShotRecord lastShotRecord = new BoxLastShotRecord();
// byte[] info = obj.plc.ReadBytes("DB50.896", (ushort)88);
// IByteTransform byteTransform = new RegularByteTransform();
// lastShotRecord.System = "1";
// lastShotRecord.GunCode = "A1";
// lastShotRecord.GunCode = "A1";
// #region 赋值
// lastShotRecord.PolTemp = Encoding.ASCII.GetString(info.Skip(0).Take(4).ToArray());
// lastShotRecord.PolHp = StringChange.bytesToHexStr(info.Skip(4).Take(4).ToArray(), 4);
// lastShotRecord.PolVol = StringChange.bytesToHexStr(info.Skip(8).Take(4).ToArray(), 4);
// lastShotRecord.PolUsage = StringChange.bytesToHexStr(info.Skip(12).Take(4).ToArray(), 4);
// lastShotRecord.IsoTemp = StringChange.bytesToHexStr(info.Skip(16).Take(4).ToArray(), 4);
// lastShotRecord.IsoHp = StringChange.bytesToHexStr(info.Skip(20).Take(4).ToArray(), 4);
// lastShotRecord.IsoVol = StringChange.bytesToHexStr(info.Skip(24).Take(4).ToArray(), 4);
// lastShotRecord.IsoUsage = StringChange.bytesToHexStr(info.Skip(28).Take(4).ToArray(), 4);
// lastShotRecord.PourNu = StringChange.bytesToHexStr(info.Skip(36).Take(2).ToArray(), 2);
// lastShotRecord.SetTime = StringChange.bytesToHexStr(info.Skip(38).Take(4).ToArray(), 4);
// lastShotRecord.SetWeight = StringChange.bytesToHexStr(info.Skip(42).Take(4).ToArray(), 4);
// lastShotRecord.SetRatio = StringChange.bytesToHexStr(info.Skip(46).Take(4).ToArray(), 4);
// lastShotRecord.PourWeight = StringChange.bytesToHexStr(info.Skip(50).Take(4).ToArray(), 4);
// lastShotRecord.PourRatio = StringChange.bytesToHexStr(info.Skip(54).Take(4).ToArray(), 4);
// lastShotRecord.MpTime = StringChange.bytesToHexStr(info.Skip(58).Take(4).ToArray(), 4);
// lastShotRecord.HpTime = StringChange.bytesToHexStr(info.Skip(62).Take(4).ToArray(), 4);
// lastShotRecord.HydrPress = StringChange.bytesToHexStr(info.Skip(66).Take(4).ToArray(), 4);
// lastShotRecord.HydrTemp = StringChange.bytesToHexStr(info.Skip(70).Take(4).ToArray(), 4);
// lastShotRecord.MixpistOn = StringChange.bytesToHexStr(info.Skip(74).Take(4).ToArray(), 4);
// lastShotRecord.MixpistOff = StringChange.bytesToHexStr(info.Skip(78).Take(4).ToArray(), 4);
// lastShotRecord.TotalYield = StringChange.bytesToHexStr(info.Skip(82).Take(4).ToArray(), 4);
// lastShotRecord.PourEnd = StringChange.bytesToHexStr(info.Skip(87).Take(1).ToArray(), 1);
// lastShotRecord.CreateTime = DateTime.Now;
// #endregion
// //if (tempLastRecord == null)
// //{
// // //数据库查
// // tempLastRecord = _lastShotRecordServices.Query(x => x.System == lastShotRecord.System && x.ProductLineCode == lastShotRecord.ProductLineCode && x.GunCode == lastShotRecord.GunCode).OrderByDescending(x => x.CreateTime).FirstOrDefault();
// //}
// //if (tempLastRecord == null || !tempLastRecord.MixpistOff.Equals(lastShotRecord.MixpistOff))
// //{
// // // 刷新页面
// // RefreshLastShotDataDelegateEvent?.Invoke(lastShotRecord);
// // //保存
// // _lastShotRecordServices.AddAsync(lastShotRecord);
// // tempLastRecord = lastShotRecord;
// //}
// }
//}
#region 字符工具转换方法
/// byte[]转十进制ascii码
/// </summary>
/// <param name="bytes"></param>
static string ByteArrayToString(byte[] bytes)
{
string result = string.Empty;
foreach (byte b in bytes)
{
int decimalValue = Convert.ToInt32(b); // 将字节转换为十进制值
result += decimalValue;
}
return result;
}
/// <summary>
/// byte[]转二进制
/// </summary>
/// <param name="bytes"></param>
static string ByteArrayToBinary(byte[] bytes)
{
StringBuilder binaryString = new StringBuilder();
foreach (byte b in bytes)
{
binaryString.Append(Convert.ToString(b, 2).PadLeft(8, '0'));
}
// Console.WriteLine(binaryString);
string reversedStr = new string(binaryString.ToString().Reverse().ToArray());
// Console.WriteLine(reversedStr);
return reversedStr;
}
/// <summary>
/// 根据二进制字符串确定夹具状态 1正常生产 2暂停生产
/// </summary>
static int judgeStatus(string str1)
{
int item1 = 0;
if (str1.Substring(0, 1) == "1")
{
item1 = 1; //
}
else if (str1.Substring(1, 1) == "1")
{
item1 = 2; //
}
return item1;
}
/// <summary>
/// byte数组转换为float
/// </summary>
static float byteToFloat(byte[] list)
{
float result = 0.00f;
Array.Reverse(list);
result = BitConverter.ToSingle(list, 0);
return result;
}
#endregion
}
}

@ -0,0 +1,310 @@
using Admin.Core.IService;
using Admin.Core.Tasks;
using CommunityToolkit.Mvvm.ComponentModel;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.DoorFoam.Models
{
public partial class FoamMachinesModel
{
#region 料位
/// <summary>
/// POL料位
/// </summary>
public int Syst1_POLMaterialLevel { get; set; }
/// <summary>
/// ISO料位
/// </summary>
public int Syst1_ISOMaterialLevel { get; set; }
#endregion
#region 温度
/// <summary>
/// Plo温度
/// </summary>
public string Syst1_PolTmperature { get; set; }
/// <summary>
/// ISO温度
/// </summary>
public string Syst1_IsoTmperature { get; set; }
#endregion
#region 压力
/// <summary>
/// Pol压力
/// </summary>
public string Syst1_PolPressure { get; set; }
/// <summary>
/// Iso压力
/// </summary>
public string Syst1_IsoPressure { get; set; }
#endregion
#region 温度
/// <summary>
/// Iso温度
/// </summary>
public string Syst1_PolTemperature { get; set; }
/// <summary>
/// Iso温度
/// </summary>
public string Syst1_IsoTemperature { get; set; }
#endregion
#region 输出压力
/// <summary>
/// POL输出压力
/// </summary>
public string Syst1_PolOutputPressure { get; set; }
/// <summary>
/// ISO输出压力
/// </summary>
public string Syst1_IsoOutputPressure { get; set; }
#endregion
#region 流量
/// <summary>
/// POL流量
/// </summary>
public string Syst1_PolFlow { get; set; }
/// <summary>
/// ISO流量
/// </summary>
public string Syst1_IsoFlow { get; set; }
#endregion
#region 原料用量
/// <summary>
/// POL流量
/// </summary>
public string Syst1_PolMaterialLeve { get; set; }
/// <summary>
/// ISO流量
/// </summary>
public string Syst1_IsoMaterialLeve { get; set; }
#endregion
#region 液压
/// <summary>
/// 液压压力
/// </summary>
public string Syst1_Pressure { get; set; }
/// <summary>
/// 液压
/// </summary>
public string Syst1_Temperature { get; set; }
#endregion
#region 结束信号
/// <summary>
/// A1结束信号
/// </summary>
public string Syst1_A1_End { get; set; }
/// <summary>
/// 结束信号
/// </summary>
public string Syst1_B1_End { get; set; }
#endregion
#region A1-B1 POL注料压力
/// <summary>
/// A1 POL注料压力
/// </summary>
public string Syst1_A1_POLPressure { get; set; }
/// <summary>
/// B1 POL注料压力
/// </summary>
public string Syst1_B1_POLPressure { get; set; }
#endregion
#region A1-B1 POL注料温度
/// <summary>
/// A1 POL注料温度
/// </summary>
public string Syst1_A1_POLTemperature { get; set; }
/// <summary>
/// B1 POL注料温度
/// </summary>
public string Syst1_B1_POLTemperature { get; set; }
#endregion
#region A1-B1 ISO注料压力
/// <summary>
/// A1 ISO注料压力
/// </summary>
public string Syst1_A1_ISOPressure { get; set; }
/// <summary>
/// B1 ISO注料压力
/// </summary>
public string Syst1_B1_ISOPressure { get; set; }
#endregion
#region A1-B1 ISO注料压力
/// <summary>
/// A1 ISO注料压力
/// </summary>
public string Syst1_A1_ISOTemperature { get; set; }
/// <summary>
/// B1 ISO注料压力
/// </summary>
public string Syst1_B1_ISOTemperature { get; set; }
#endregion
#region 系统2料位
/// <summary>
/// POL料位
/// </summary>
public int Syst2_POLMaterialLevel { get; set; }
/// <summary>
/// ISO料位
/// </summary>
public int Syst2_ISOMaterialLevel { get; set; }
#endregion
#region 系统2温度
/// <summary>
/// Plo温度
/// </summary>
public string Syst2_PolTmperature { get; set; }
/// <summary>
/// ISO温度
/// </summary>
public string Syst2_IsoTmperature { get; set; }
#endregion
#region 系统2压力
/// <summary>
/// Pol压力
/// </summary>
public string Syst2_PolPressure { get; set; }
/// <summary>
/// Iso压力
/// </summary>
public string Syst2_IsoPressure { get; set; }
#endregion
#region 系统2温度
/// <summary>
/// Iso温度
/// </summary>
public string Syst2_PolTemperature { get; set; }
/// <summary>
/// Iso温度
/// </summary>
public string Syst2_IsoTemperature { get; set; }
#endregion
#region 系统2输出压力
/// <summary>
/// POL输出压力
/// </summary>
public string Syst2_PolOutputPressure { get; set; }
/// <summary>
/// ISO输出压力
/// </summary>
public string Syst2_IsoOutputPressure { get; set; }
#endregion
#region 系统2流量
/// <summary>
/// POL流量
/// </summary>
public string Syst2_PolFlow { get; set; }
/// <summary>
/// ISO流量
/// </summary>
public string Syst2_IsoFlow { get; set; }
#endregion
#region 系统2原料用量
/// <summary>
/// POL流量
/// </summary>
public string Syst2_PolMaterialLeve { get; set; }
/// <summary>
/// ISO流量
/// </summary>
public string Syst2_IsoMaterialLeve { get; set; }
#endregion
#region 系统2液压
/// <summary>
/// 液压压力
/// </summary>
public string Syst2_Pressure { get; set; }
/// <summary>
/// 液压
/// </summary>
public string Syst2_Temperature { get; set; }
#endregion
#region 系统2结束信号
/// <summary>
/// A1结束信号
/// </summary>
public string Syst2_A1_End { get; set; }
/// <summary>
/// 结束信号
/// </summary>
public string Syst2_B1_End { get; set; }
#endregion
#region 系统2 A1-B1 POL注料压力
/// <summary>
/// A1 POL注料压力
/// </summary>
public string Syst2_A1_POLPressure { get; set; }
/// <summary>
/// B1 POL注料压力
/// </summary>
public string Syst2_B1_POLPressure { get; set; }
#endregion
#region 系统2 A1-B1 POL注料温度
/// <summary>
/// A1 POL注料温度
/// </summary>
public string Syst2_A1_POLTemperature { get; set; }
/// <summary>
/// B1 POL注料温度
/// </summary>
public string Syst2_B1_POLTemperature { get; set; }
#endregion
#region 系统2 A1-B1 ISO注料压力
/// <summary>
/// A1 ISO注料压力
/// </summary>
public string Syst2_A1_ISOPressure { get; set; }
/// <summary>
/// B1 ISO注料压力
/// </summary>
public string Syst2_B1_ISOPressure { get; set; }
#endregion
#region 系统2 A1-B1 ISO注料压力
/// <summary>
/// A1 ISO注料压力
/// </summary>
public string Syst2_A1_ISOTemperature { get; set; }
/// <summary>
/// B1 ISO注料压力
/// </summary>
public string Syst2_B1_ISOTemperature { get; set; }
#endregion
}
}

@ -0,0 +1,56 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.DoorFoam.Models
{
public class LastShotRecordModel
{
public int No { get; set; }
/// <summary>
/// 所属系统;1系统 2系统
/// </summary>
public string System { get; set; }
/// <summary>
/// 枪头
/// </summary>
public string GunHead { get; set; }
/// <summary>
/// 工位号
/// </summary>
public string StationNumber { get; set; }
/// <summary>
/// POL注料压力
/// </summary>
public string PolInjectionpressure { get; set; }
/// <summary>
/// ISO注料压力
/// </summary>
public string IsoInjectionpressure { get; set; }
/// <summary>
/// POL注料温度
/// </summary>
public string PolInjectiontemperature { get; set; }
/// <summary>
/// ISO注料温度
/// </summary>
public string IsoInjectiontemperature { get; set; }
/// <summary>
/// 最后一次时间
/// </summary>
public DateTime LastTime { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime Createtime { get; set; }
}
}

@ -0,0 +1,514 @@
using Admin.Core.Common;
using Admin.Core.IService;
using Admin.Core.Model;
using Admin.Core.Model.ViewModels;
using Admin.Core.Service;
using Admin.Core.Tasks;
using Aucma.Core.DoorFoam.Models;
using CommunityToolkit.Mvvm.ComponentModel;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.DoorFoam.ViewModels
{
public partial class FoamMachinesPageViewModel : ObservableObject
{
IBoxLastShotRecordServices _boxLastShotRecordServices;
public FoamMachinesPageViewModel()
{
Job_BoxFoamLastData_Quartz.RefreshLastShotDataDelegateEvent += RefreshData;
_boxLastShotRecordServices = App.ServiceProvider.GetService<IBoxLastShotRecordServices>();
// LoadData();
//Task.WaitAll(LoadData());
}
public void RefreshData(BoxLastShotRecord record)
{
System.Windows.Application.Current.Dispatcher.Invoke((Action)(async () =>
{
string system = string.Empty;
if (record.System == "1") {
system = "1系统";
// PolFlow1 = record.POLInjecFlowRate;
// IsoFlow1 = record.ISOInjecFlowRate;
// PoleTmperature1 = record.POLInjecTemperatureOfGunHead;
// IsoTemperature1 = record.ISOInjecTemperatureOfGunHead;
}
if (record.System == "2") { system = "2系统"; }
LastShotRecordDataGrid.Add(new LastShotRecordModel()
{
No = LastShotRecordDataGrid.Count+1,
System = system,
GunHead = record.GunCode,
// StationNumber = record.StationNumber,
PolInjectionpressure = record.PolHp,
IsoInjectionpressure = record.IsoHp,
PolInjectiontemperature = record.PolTemp,
IsoInjectiontemperature = record.IsoTemp,
LastTime = record.CreateTime,
Createtime = record.CreateTime
});
}));
}
#region 加载DataGrid数据
private async Task LoadData()
{
System.Windows.Application.Current.Dispatcher.Invoke((Action)(async () =>
{
LastShotRecordDataGrid.Clear();
int i = 1;
var list = await _boxLastShotRecordServices.QueryAsync();
if (list == null) return;
list.OrderByDescending(d => d.CreateTime);
foreach (var item in list.Take(50))
{
string system = string.Empty;
if (item.System == "1") { system = "1系统"; }
if (item.System == "2") { system = "2系统"; }
LastShotRecordDataGrid.Add(new LastShotRecordModel()
{
No = i,
System = system,
GunHead=item.GunCode,
// StationNumber=item.StationNumber,
PolInjectionpressure = item.PolHp,
IsoInjectionpressure = item.IsoHp,
PolInjectiontemperature = item.PolTemp,
IsoInjectiontemperature = item.IsoTemp,
LastTime = item.CreateTime,
Createtime = item.CreateTime
});
i++;
};
// Datalist.Insert(0, Datalist[Datalist.Count - 1]);
// Datalist.RemoveAt(Datalist.Count - 1);
}));
}
#endregion
#region 初始化datagrid
private ObservableCollection<LastShotRecordModel> _lastShotRecordDataGrid = new ObservableCollection<LastShotRecordModel>();
public ObservableCollection<LastShotRecordModel> LastShotRecordDataGrid
{
get { return _lastShotRecordDataGrid; }
set
{
_lastShotRecordDataGrid = value;
OnPropertyChanged();//属性通知
}
}
#endregion
#region 1系统属性
/// <summary>
/// POL输入压力
/// </summary>
private string _PolInputPressure = "0.00";
public string PolInputPressure1
{
get => _PolInputPressure;
set => SetProperty(ref _PolInputPressure, value);
}
/// <summary>
/// ISO输入压力
/// </summary>
private string _IsoInputPressure = "0.00";
public string IsoInputPressure1
{
get => _IsoInputPressure;
set => SetProperty(ref _IsoInputPressure, value);
}
/// <summary>
/// POL输出压力
/// </summary>
private string _polOutputPressure = "0.0";
public string PolOutputPressure1
{
get => _polOutputPressure;
set => SetProperty(ref _polOutputPressure, value);
}
/// <summary>
/// ISO输出压力
/// </summary>
private string _isoOutputPressure1 = "0.0";
public string IsoOutputPressure1
{
get => _isoOutputPressure1;
set => SetProperty(ref _isoOutputPressure1, value);
}
/// <summary>
/// Pol流量
/// </summary>
private string _Polflow1 = "0";
public string PolFlow1
{
get => _Polflow1;
set => SetProperty(ref _Polflow1, value);
}
/// <summary>
/// Iso流量
/// </summary>
private string _isoflow1 = "0";
public string IsoFlow1
{
get => _isoflow1;
set => SetProperty(ref _isoflow1, value);
}
/// <summary>
/// Pol温度
/// </summary>
private string _PoleTmperature = "0";
public string PoleTmperature1
{
get => _PoleTmperature;
set => SetProperty(ref _PoleTmperature, value);
}
/// <summary>
/// Iso温度
/// </summary>
private string _isoTemperature = "0";
public string IsoTemperature1
{
get => _isoTemperature;
set => SetProperty(ref _isoTemperature, value);
}
/// <summary>
/// 料位
/// </summary>
private string _PolMaterialLevel1 = "0";
public string PolMaterialLevel1
{
get => _PolMaterialLevel1;
set => SetProperty(ref _PolMaterialLevel1, value);
}
/// <summary>
/// Iso温度
/// </summary>
private string _IsoMaterialLevel1 = "0";
public string IsoMaterialLevel1
{
get => _IsoMaterialLevel1;
set => SetProperty(ref _IsoMaterialLevel1, value);
}
/// <summary>
/// 压力
/// </summary>
private string _pressure1 = "0.00";
public string Pressure1
{
get => _pressure1;
set => SetProperty(ref _pressure1, value);
}
/// <summary>
/// 温度
/// </summary>
private string _temperature1 = "0.00";
public string Temperature1
{
get => _temperature1;
set => SetProperty(ref _temperature1, value);
}
/// <summary>
/// A枪状态
/// </summary>
private string _status1;
public string Status1
{
get => _status1;
set => SetProperty(ref _status1, value);
}
/// <summary>
/// B枪状态
/// </summary>
private string _status11;
public string Status11
{
get => _status11;
set => SetProperty(ref _status11, value);
}
/// <summary>
/// 压力
/// </summary>
private string _POLPressure1 = "0.00";
public string POLPressure1
{
get => _POLPressure1;
set => SetProperty(ref _POLPressure1, value);
}
/// <summary>
/// A枪POL温度
/// </summary>
private string _POLTemperature1 = "0.00";
public string POLTemperature1
{
get => _POLTemperature1;
set => SetProperty(ref _POLTemperature1, value);
}
/// <summary>
/// B枪POL温度
/// </summary>
private string _POLTemperature11 = "0.0";
public string POLTemperature11
{
get => _POLTemperature11;
set => SetProperty(ref _POLTemperature11, value);
}
/// <summary>
/// 压力
/// </summary>
private string _ISOPressure1 = "0.00";
public string ISOPressure1
{
get => _ISOPressure1;
set => SetProperty(ref _ISOPressure1, value);
}
/// <summary>
/// 压力
/// </summary>
private string _ISOPressure11 = "0.00";
public string ISOPressure11
{
get => _ISOPressure11;
set => SetProperty(ref _ISOPressure11, value);
}
/// <summary>
/// 温度
/// </summary>
private string _ISOTemperature11 = "0.0";
public string ISOTemperature11
{
get => _ISOTemperature11;
set => SetProperty(ref _ISOTemperature11, value);
}
#endregion
#region 2系统属性
/// <summary>
/// POL输入压力
/// </summary>
private string _PolInputPressure2 = "0.00";
public string PolInputPressure2
{
get => _PolInputPressure2;
set => SetProperty(ref _PolInputPressure2, value);
}
/// <summary>
/// ISO输入压力
/// </summary>
private string _IsoInputPressure2 = "0.00";
public string IsoInputPressure2
{
get => _IsoInputPressure2;
set => SetProperty(ref _IsoInputPressure2, value);
}
/// <summary>
/// POL输出压力
/// </summary>
private string _polOutputPressure2 = "0.00";
public string PolOutputPressure2
{
get => _polOutputPressure2;
set => SetProperty(ref _polOutputPressure2, value);
}
/// <summary>
/// ISO输出压力
/// </summary>
private string _isoOutputPressure2 = "0.00";
public string IsoOutputPressure2
{
get => _isoOutputPressure2;
set => SetProperty(ref _isoOutputPressure2, value);
}
/// <summary>
/// Pol流量
/// </summary>
private string _Polflow2 = "0";
public string PolFlow2
{
get => _Polflow2;
set => SetProperty(ref _Polflow2, value);
}
/// <summary>
/// Iso流量
/// </summary>
private string _isoflow2 = "0";
public string IsoFlow2
{
get => _isoflow2;
set => SetProperty(ref _isoflow2, value);
}
/// <summary>
/// Pol温度
/// </summary>
private string _PoleTmperature2 = "0";
public string PoleTmperature2
{
get => _PoleTmperature2;
set => SetProperty(ref _PoleTmperature2, value);
}
/// <summary>
/// Iso温度
/// </summary>
private string _isoTemperature2 = "0";
public string IsoTemperature2
{
get => _isoTemperature2;
set => SetProperty(ref _isoTemperature2, value);
}
/// <summary>
/// 料位
/// </summary>
private string _PolMaterialLevel2 = "0";
public string PolMaterialLevel2
{
get => _PolMaterialLevel2;
set => SetProperty(ref _PolMaterialLevel2, value);
}
/// <summary>
/// Iso温度
/// </summary>
private string _IsoMaterialLevel2 = "0";
public string IsoMaterialLevel2
{
get => _IsoMaterialLevel2;
set => SetProperty(ref _IsoMaterialLevel2, value);
}
/// <summary>
/// 压力
/// </summary>
private string _pressure2 = "0.00";
public string Pressure2
{
get => _pressure2;
set => SetProperty(ref _pressure2, value);
}
/// <summary>
/// 温度
/// </summary>
private string _temperature2 = "0.00";
public string Temperature2
{
get => _temperature2;
set => SetProperty(ref _temperature2, value);
}
/// <summary>
/// A枪状态
/// </summary>
private string _status2 = "";
public string Status2
{
get => _status2;
set => SetProperty(ref _status2, value);
}
/// <summary>
/// B枪状态
/// </summary>
private string _status12 = "";
public string Status12
{
get => _status12;
set => SetProperty(ref _status12, value);
}
/// <summary>
/// 压力
/// </summary>
private string _POLPressure2 = "0.00";
public string POLPressure2
{
get => _POLPressure2;
set => SetProperty(ref _POLPressure2, value);
}
/// <summary>
/// 温度
/// </summary>
private string _POLTemperature2 = "0.00";
public string POLTemperature2
{
get => _POLTemperature2;
set => SetProperty(ref _POLTemperature2, value);
}
/// <summary>
/// A枪压力
/// </summary>
private string _ISOPressure2 = "0.00";
public string ISOPressure2
{
get => _ISOPressure2;
set => SetProperty(ref _ISOPressure2, value);
}
/// <summary>
///A枪温度
/// </summary>
private string _ISOTemperature22 = "0.0";
public string ISOTemperature22
{
get => _ISOTemperature22;
set => SetProperty(ref _ISOTemperature22, value);
}
/// <summary>
/// B枪温度
/// </summary>
private string _ISOTemperature222 = "0.0";
public string ISOTemperature222
{
get => _ISOTemperature222;
set => SetProperty(ref _ISOTemperature222, value);
}
/// <summary>
/// B枪温度
/// </summary>
private string _POLPressure22 = "0.0";
public string POLPressure22
{
get => _POLPressure22;
set => SetProperty(ref _POLPressure22, value);
}
/// <summary>
/// B枪ISO温度
/// </summary>
private string _POLTemperature22 = "0.0";
public string POLTemperature22
{
get => _POLTemperature22;
set => SetProperty(ref _POLTemperature22, value);
}
/// <summary>
/// B枪ISO压力
/// </summary>
private string _ISOPressure22 = "0.0";
public string ISOPressure22
{
get => _ISOPressure22;
set => SetProperty(ref _ISOPressure22, value);
}
#endregion
}
}

@ -20,6 +20,7 @@ namespace Aucma.Core.DoorFoam.ViewModels
private IndexPageView firstPage = new IndexPageView();//首页 private IndexPageView firstPage = new IndexPageView();//首页
//private StatisticsPageView recordPage = new StatisticsPageView(); //private StatisticsPageView recordPage = new StatisticsPageView();
RealTimePageView realTimePageView = new RealTimePageView(); RealTimePageView realTimePageView = new RealTimePageView();
FoamMachinesPageView foamMachinesPageView = new FoamMachinesPageView();
public MainWindowViewModel() public MainWindowViewModel()
{ {
UserContent = firstPage; UserContent = firstPage;
@ -193,6 +194,9 @@ namespace Aucma.Core.DoorFoam.ViewModels
case "RealTimePage": case "RealTimePage":
UserContent = realTimePageView; UserContent = realTimePageView;
break; break;
case "FoamMachinesPage":
UserContent = foamMachinesPageView;
break;
default: default:
break; break;
} }

@ -0,0 +1,531 @@
<UserControl x:Class="Aucma.Core.DoorFoam.Views.FoamMachinesPageView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:local="clr-namespace:Aucma.Core.DoorFoam.Views"
mc:Ignorable="d"
FontFamily="Microsoft YaHei"
d:DesignHeight="1080"
d:DesignWidth="1920"
Foreground="White"
FontSize="18">
<UserControl.Resources>
<Style x:Key="DataGridTextColumnCenterSytle" TargetType="{x:Type TextBlock}">
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Margin" Value="5 0 0 0" />
</Style>
<Style TargetType="DataGrid">
<!--网格线颜色-->
<Setter Property="CanUserResizeColumns" Value="false"/>
<Setter Property="Background" Value="#1152AC" />
<Setter Property="BorderBrush" Value="#4285DE" />
<Setter Property="Foreground" Value="White"/>
<Setter Property="HorizontalGridLinesBrush">
<Setter.Value>
<SolidColorBrush Color="#4285DE"/>
</Setter.Value>
</Setter>
<Setter Property="VerticalGridLinesBrush">
<Setter.Value>
<SolidColorBrush Color="#1152AC"/>
</Setter.Value>
</Setter>
</Style>
<!--列头标题栏样式-->
<Style TargetType="DataGridColumnHeader">
<Setter Property="HorizontalContentAlignment" Value="Left" />
<Setter Property="BorderBrush" Value="#dddddd" />
<Setter Property="Height" Value="40"/>
<Setter Property="FontSize" Value="18"/>
<Setter Property="Background" Value="#4285DE"/>
<Setter Property="Foreground" Value="White"/>
</Style>
<!--单元格样式-->
<Style TargetType="DataGridCell">
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="Height" Value="40"/>
<Setter Property="FontSize" Value="18"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type DataGridCell}">
<Grid Background="{TemplateBinding Background}" >
<ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="#4285DE"/>
<Setter Property="Foreground" Value="White"/>
</Trigger>
</Style.Triggers>
</Style>
</UserControl.Resources>
<Border x:Name="HeightHelperPanel" BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="5">
<Grid>
<Grid.Resources>
<Style TargetType="TextBlock">
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="FontSize" Value="16"/>
<Setter Property="FontFamily" Value="Microsoft YaHei"/>
</Style>
<Style TargetType="Border">
<Setter Property="BorderBrush" Value="#0288d1"/>
<Setter Property="BorderThickness" Value="1"/>
</Style>
</Grid.Resources>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="0.6*" />
</Grid.RowDefinitions>
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Border Grid.Column="0" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.08*" />
<RowDefinition />
</Grid.RowDefinitions>
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9" Margin="1" >
<TextBlock Text="1系统" FontSize="23" FontWeight="Bold" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<Border Grid.Row="1" BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Column="0" Grid.Row="0" VerticalAlignment="Center"/>
<StackPanel Grid.Column="1" Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBlock Text="POL" FontSize="18" FontWeight="Bold" Foreground="White" />
</StackPanel>
<StackPanel Grid.Row="0" Grid.Column="2" Grid.ColumnSpan="3" VerticalAlignment="Center" HorizontalAlignment="Center" >
<TextBlock Text="ISO" FontSize="18" FontWeight="Bold" Foreground="White"/>
</StackPanel>
<StackPanel Grid.Column="0" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" >
<TextBlock Text="输入压力" FontSize="18" Foreground="White"/>
</StackPanel>
<WrapPanel Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POPressure}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoInputPressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="输出压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolOutputPressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoOutputPressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="流量" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolFlow1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="g/s" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoFlow1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="g/s" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PoleTmperature1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoTemperature1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="料位" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolMaterialLevel1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="%" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoMaterialLevel1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="%" FontSize="18" Foreground="White" />
</WrapPanel>
<Border Grid.Column="0" Grid.Row="6" Grid.ColumnSpan="3" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9" >
<TextBlock Text="液压" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<WrapPanel Grid.Column="0" Grid.Row="7" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="7" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding Pressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="8" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="8" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding Temperature1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<Border Grid.Column="0" Grid.Row="9" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9">
<TextBlock Text="" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<Border Grid.Column="1" Grid.Row="9" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9">
<TextBlock Text="A枪" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<Border Grid.Column="2" Grid.Row="9" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9">
<TextBlock Text="B枪" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<WrapPanel Grid.Column="0" Grid.Row="10" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="状态" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="10" VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBlock Text="{Binding Status1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="10" VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBlock Text="{Binding Status11}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="POL压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLPressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLPressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="12" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="POL温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="12" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLTemperature1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="12" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLTemperature11}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="13" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="ISO压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="13" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOPressure1}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="13" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOPressure11}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="14" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="ISO温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="14" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOTemperature11}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="14" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOTemperature11}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
</Grid>
</Border>
</Grid>
</Border>
</Grid>
</Border>
<Border Grid.Column="1" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.08*" />
<RowDefinition />
</Grid.RowDefinitions>
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9" Margin="1" >
<TextBlock Text="2系统" FontSize="23" FontWeight="Bold" Foreground="White" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<Border Grid.Row="1" BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Border Grid.Row="0" BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Column="0" Grid.Row="0" VerticalAlignment="Center"/>
<StackPanel Grid.Column="1" Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBlock Text="POL" FontSize="18" FontWeight="Bold" Foreground="White" />
</StackPanel>
<StackPanel Grid.Row="0" Grid.Column="2" Grid.ColumnSpan="3" VerticalAlignment="Center" HorizontalAlignment="Center" >
<TextBlock Text="ISO" FontSize="18" FontWeight="Bold" Foreground="White"/>
</StackPanel>
<StackPanel Grid.Column="0" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Right" >
<TextBlock Text="输入压力" FontSize="18" Foreground="White"/>
</StackPanel>
<WrapPanel Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolInputPressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoInputPressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="输出压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolOutputPressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="2" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoOutputPressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="流量" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolFlow2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="g/s" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="3" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoFlow2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="g/s" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PoleTmperature2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White" />
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="4" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoTemperature2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="料位" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding PolMaterialLevel2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="%" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="5" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding IsoMaterialLevel2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="%" FontSize="18" Foreground="White"/>
</WrapPanel>
<Border Grid.Column="0" Grid.Row="6" Grid.ColumnSpan="3" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9" >
<TextBlock Text="液压" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<WrapPanel Grid.Column="0" Grid.Row="7" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="7" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding Pressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="8" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="8" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding Temperature2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<Border Grid.Column="0" Grid.Row="9" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9">
<TextBlock Text="" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<Border Grid.Column="1" Grid.Row="9" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9">
<TextBlock Text="A枪" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<Border Grid.Column="2" Grid.Row="9" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="0" Background="#1157b9">
<TextBlock Text="B枪" FontSize="18" FontWeight="Bold" Foreground="White"/>
</Border>
<WrapPanel Grid.Column="0" Grid.Row="10" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="状态" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="10" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding Status2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="50"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="10" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10 0 0 0">
<TextBlock Text="{Binding Status22}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="50"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="POL压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="POL压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLPressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="11" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLPressure22}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="12" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="POL温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="12" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLTemperature2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="12" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding POLTemperature22}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="13" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="ISO压力" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="13" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOPressure2}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="13" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOPressure22}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="MPa" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="0" Grid.Row="14" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="ISO温度" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="1" Grid.Row="14" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOTemperature22}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
<WrapPanel Grid.Column="2" Grid.Row="14" VerticalAlignment="Center" HorizontalAlignment="Left">
<TextBlock Text="{Binding ISOTemperature222}" FontSize="18" Margin="0 0 18 0" Foreground="White" Width="200" VerticalAlignment="Center" Block.TextAlignment="Center"/>
<TextBlock Text="℃" FontSize="18" Foreground="White"/>
</WrapPanel>
</Grid>
</Border>
</Grid>
</Border>
</Grid>
</Border>
</Grid>
</Border>
<Border Grid.Row="1" BorderBrush="#0288d1" BorderThickness="1" CornerRadius="5" Background="Transparent" Margin="1,1,5,5">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<DataGrid Grid.Row="0" ItemsSource="{Binding LastShotRecordDataGrid}" Background="#00000000"
ColumnHeaderHeight="40"
RowHeight="50" AutoGenerateColumns="False" RowHeaderWidth="0" FontSize="20"
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Auto" BorderThickness="0" CanUserAddRows="False" SelectionMode="Single" IsReadOnly="True"
Foreground="White" >
<!--修改选中字体颜色-->
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding No}" Header="编号" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding System}" Header="系统" Width="1*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding GunHead}" Header="注料枪头" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding StationNumber}" Header="注料工位号" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding PolInjectionpressure}" Header="POL注料压力" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding IsoInjectionpressure}" Header="ISO注料压力" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding PolInjectiontemperature}" Header="POL注料温度" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}" />
<DataGridTextColumn Binding="{Binding IsoInjectiontemperature}" Header="ISO注料温度" Width="*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
<DataGridTextColumn Binding="{Binding LastTime ,StringFormat=\{0:MM-dd HH:mm\}}" Header="采集时间" Width="1.5*" ElementStyle="{StaticResource DataGridTextColumnCenterSytle}"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</Grid>
</Border>
</UserControl>

@ -0,0 +1,30 @@
using Aucma.Core.DoorFoam.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
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 Aucma.Core.DoorFoam.Views
{
/// <summary>
/// FoamMachinesPageView.xaml 的交互逻辑
/// </summary>
public partial class FoamMachinesPageView : UserControl
{
public FoamMachinesPageView()
{
InitializeComponent();
this.DataContext = new FoamMachinesPageViewModel();
}
}
}

@ -65,7 +65,7 @@
<StackPanel Grid.Row="1" Height="50" Orientation="Horizontal" Margin="5 0" HorizontalAlignment="Left"> <StackPanel Grid.Row="1" Height="50" Orientation="Horizontal" Margin="5 0" HorizontalAlignment="Left">
<Button Content="发泡线监控" x:Name="FoamLinePage" Command="{Binding SwitchPagesCommand}" CommandParameter="{Binding Name,ElementName=FoamLinePage}" Margin="5 0" /> <Button Content="发泡线监控" x:Name="FoamLinePage" Command="{Binding SwitchPagesCommand}" CommandParameter="{Binding Name,ElementName=FoamLinePage}" Margin="5 0" />
<!--<Button Content="发泡机监控" x:Name="FoamMachinesPage" Margin="5 0" Command="{Binding SwitchPagesCommand}" CommandParameter="{Binding Name,ElementName=FoamMachinesPage}" />--> <Button Content="发泡机监控" x:Name="FoamMachinesPage" Margin="5 0" Command="{Binding SwitchPagesCommand}" CommandParameter="{Binding Name,ElementName=FoamMachinesPage}" />
<Button Content="生产统计" x:Name="RealTimePage" Margin="5 0" Command="{Binding SwitchPagesCommand}" CommandParameter="{Binding Name,ElementName=RealTimePage}" /> <Button Content="生产统计" x:Name="RealTimePage" Margin="5 0" Command="{Binding SwitchPagesCommand}" CommandParameter="{Binding Name,ElementName=RealTimePage}" />
<Button Content="键 盘" x:Name="TabTip" Margin="5 0" Command="{Binding FormControlCommand}" CommandParameter="{Binding Name,ElementName=TabTip}" /> <Button Content="键 盘" x:Name="TabTip" Margin="5 0" Command="{Binding FormControlCommand}" CommandParameter="{Binding Name,ElementName=TabTip}" />
<Button Content="最小化" x:Name="Minimized" Margin="5 0" Command="{Binding FormControlCommand}" CommandParameter="{Binding Name,ElementName=Minimized}" Width="100" Background="#FF9900" BorderBrush="#FF9900" /> <Button Content="最小化" x:Name="Minimized" Margin="5 0" Command="{Binding FormControlCommand}" CommandParameter="{Binding Name,ElementName=Minimized}" Width="100" Background="#FF9900" BorderBrush="#FF9900" />

Loading…
Cancel
Save