1234567891011121314151617181920212223242526272829303132 |
- using Prism.Commands;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.ViewModels.HomePanel.CloudDrive
- {
- public class CloudDriveContentViewModel : BindableBase
- {
-
-
- /// public DelegateCommand CheckDriveCommand { get; set; }
- // public DelegateCommand OpenCloudDriveCommand { get; set; }
- public CloudDriveContentViewModel()
- {
-
- // CheckDriveCommand = new DelegateCommand(CheckDrive);
- // OpenCloudDriveCommand = new DelegateCommand(OpenCloudDrive_Click);
-
- }
-
- }
- }
|