Sic05/FrameworkLocal/UIClient/CenterViews/Tray/winTrayInfo.xaml.cs

41 lines
1.0 KiB
C#
Raw Permalink Normal View History

2022-12-13 09:35:10 +08:00
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.Shapes;
namespace MECF.Framework.UI.Client.CenterViews.Tray
{
/// <summary>
/// winTrayInfo.xaml 的交互逻辑
/// </summary>
public partial class winTrayInfo : Window
{
public string TrayNumber { get; set; }
public string RunTimes { get; set; }
public string CostDegree
{
get; set;
}
public winTrayInfo()
{
InitializeComponent();
}
private void winTrayInfo1_Loaded(object sender, RoutedEventArgs e)
{
this.tbTrayNumber.Text = TrayNumber;
this.tbRunTimes.Text = RunTimes;
this.tbCostDegree.Text = CostDegree;
}
}
}