using Prism.Commands;
using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
namespace PDF_Master.ViewModels.HomePanel.PDFTools
{
public class PDFToolsContentViewModel : BindableBase
{
#region 属性
///
/// 扩展/收缩
///
private bool _isExpendTools = false;
public bool IsExpendTools
{
get { return _isExpendTools; }
set { SetProperty(ref _isExpendTools, value); }
}
private bool _isDropTools = false;
public bool IsDropTools
{
get { return _isDropTools; }
set { SetProperty(ref _isDropTools, value); }
}
#endregion
#region Command and Event
public DelegateCommand