33 lines
915 B
C#
33 lines
915 B
C#
using AutoMapper;
|
|
using FATrace.WPLApp.Core;
|
|
using Prism.Services.Dialogs;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FATrace.WPLApp.ViewModels
|
|
{
|
|
public class DialogHelpManualViewModel : DialogViewModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 窗口打开时的传递的参数
|
|
/// </summary>
|
|
/// <param name="parameters"></param>
|
|
public override void OnDialogOpened(IDialogParameters parameters)
|
|
{
|
|
//CurMeterName = parameters.GetValue<string>("Name");
|
|
////RefreshChartSelectedData();
|
|
|
|
//var Data = FreeSql.Select<ConfigLimit>().Where(a => a.MeterName == CurMeterName).ToList();
|
|
|
|
//ConfigLimitDtoItems = new ObservableCollection<ConfigLimitDto>(Mapper.Map<List<ConfigLimitDto>>(Data));
|
|
|
|
}
|
|
|
|
}
|
|
}
|