mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
76 lines
1.7 KiB
C#
76 lines
1.7 KiB
C#
using DownKyi.Images;
|
|
using DownKyi.Models;
|
|
using DownKyi.Utils;
|
|
|
|
namespace DownKyi.ViewModels.DownloadManager;
|
|
|
|
public class DownloadedItem : DownloadBaseItem
|
|
{
|
|
public DownloadedItem()
|
|
{
|
|
// 打开文件夹按钮
|
|
OpenFolder = ButtonIcon.Instance().Folder;
|
|
OpenFolder.Fill = DictionaryResource.GetColor("ColorPrimary");
|
|
|
|
// 打开视频按钮
|
|
OpenVideo = ButtonIcon.Instance().Start;
|
|
OpenVideo.Fill = DictionaryResource.GetColor("ColorPrimary");
|
|
|
|
// 删除按钮
|
|
RemoveVideo = ButtonIcon.Instance().Trash;
|
|
RemoveVideo.Fill = DictionaryResource.GetColor("ColorWarning");
|
|
}
|
|
|
|
// model数据
|
|
public Downloaded Downloaded { get; set; }
|
|
|
|
// 下载速度
|
|
public string? MaxSpeedDisplay
|
|
{
|
|
get => Downloaded.MaxSpeedDisplay;
|
|
set
|
|
{
|
|
Downloaded.MaxSpeedDisplay = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
|
|
// 完成时间
|
|
public string FinishedTime
|
|
{
|
|
get => Downloaded.FinishedTime;
|
|
set
|
|
{
|
|
Downloaded.FinishedTime = value;
|
|
RaisePropertyChanged();
|
|
}
|
|
}
|
|
|
|
#region 控制按钮
|
|
|
|
private VectorImage _openFolder;
|
|
|
|
public VectorImage OpenFolder
|
|
{
|
|
get => _openFolder;
|
|
set => SetProperty(ref _openFolder, value);
|
|
}
|
|
|
|
private VectorImage _openVideo;
|
|
|
|
public VectorImage OpenVideo
|
|
{
|
|
get => _openVideo;
|
|
set => SetProperty(ref _openVideo, value);
|
|
}
|
|
|
|
private VectorImage _removeVideo;
|
|
|
|
public VectorImage RemoveVideo
|
|
{
|
|
get => _removeVideo;
|
|
set => SetProperty(ref _removeVideo, value);
|
|
}
|
|
|
|
#endregion
|
|
} |