23 lines
397 B
C#
23 lines
397 B
C#
|
using Prism.Commands;
|
|||
|
using Prism.Mvvm;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DM_Weight.ViewModels
|
|||
|
{
|
|||
|
public class TestCheckBoxViewModel:BindableBase
|
|||
|
{
|
|||
|
public DelegateCommand cbxCommand
|
|||
|
{
|
|||
|
get =>new DelegateCommand(()=>{
|
|||
|
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|