mirror of
https://gitee.com/handyorg/HandyControl.git
synced 2024-12-04 12:57:40 +08:00
60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Controls;
|
|
using GalaSoft.MvvmLight;
|
|
using GalaSoft.MvvmLight.CommandWpf;
|
|
using HandyControl.Controls;
|
|
using HandyControlDemo.Data;
|
|
using HandyControlDemo.Service;
|
|
|
|
namespace HandyControlDemo.ViewModel
|
|
{
|
|
public class StepBarDemoViewModel : ViewModelBase
|
|
{
|
|
/// <summary>
|
|
/// 数据列表
|
|
/// </summary>
|
|
private List<StepBarDemoModel> _dataList;
|
|
|
|
/// <summary>
|
|
/// 数据列表
|
|
/// </summary>
|
|
public List<StepBarDemoModel> DataList
|
|
{
|
|
get => _dataList;
|
|
set => Set(ref _dataList, value);
|
|
}
|
|
|
|
public StepBarDemoViewModel(DataService dataService)
|
|
{
|
|
DataList = dataService.GetStepBarDemoDataList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 下一步
|
|
/// </summary>
|
|
public RelayCommand<Panel> NextCmd => new Lazy<RelayCommand<Panel>>(() => new RelayCommand<Panel>(Next)).Value;
|
|
|
|
/// <summary>
|
|
/// 上一步
|
|
/// </summary>
|
|
public RelayCommand<Panel> PrevCmd => new Lazy<RelayCommand<Panel>>(() => new RelayCommand<Panel>(Prev)).Value;
|
|
|
|
private void Next(Panel panel)
|
|
{
|
|
foreach (var stepBar in panel.Children.OfType<StepBar>())
|
|
{
|
|
stepBar.Next();
|
|
}
|
|
}
|
|
|
|
private void Prev(Panel panel)
|
|
{
|
|
foreach (var stepBar in panel.Children.OfType<StepBar>())
|
|
{
|
|
stepBar.Prev();
|
|
}
|
|
}
|
|
}
|
|
} |