You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
using BBWY.Client.Models;
|
|
using BBWY.Client.Models.SealBox;
|
|
using BBWY.Client.ViewModels.SealBox;
|
|
using BBWY.Controls;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
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.Shapes;
|
|
|
|
namespace BBWY.Client.Views.SealBox
|
|
{
|
|
/// <summary>
|
|
/// SealBoxConfigureWindow.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class SealBoxConfigureWindow : BWindow
|
|
{
|
|
public SealBoxConfigureWindow(IList<SealBoxConfigureModel> sealBoxWaitConfigureModels, Action ReflashWindow, long sealboxId=0)
|
|
{
|
|
InitializeComponent();
|
|
var sealBoxConfigureViewModel = (SealBoxConfigureViewModel)this.DataContext;
|
|
|
|
sealBoxConfigureViewModel.SealBoxId = sealboxId;
|
|
sealBoxConfigureViewModel.SealBoxConfigureModelList = new List<SealBoxConfigureModel>();
|
|
|
|
sealBoxConfigureViewModel.ReflashWindow = ReflashWindow;
|
|
|
|
foreach (var sealBoxWaitConfigureModel in sealBoxWaitConfigureModels)
|
|
{
|
|
sealBoxWaitConfigureModel.Logo= sealBoxWaitConfigureModel.Logo.Replace("80x80", "150x150");
|
|
App.Current.Dispatcher.Invoke(new Action(() =>
|
|
{
|
|
sealBoxConfigureViewModel.SealBoxConfigureModelList.Add(sealBoxWaitConfigureModel);
|
|
}));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|