'添加自定义图标大小','待办任务可使用CRON表达式自定义提醒频率'

This commit is contained in:
liufei
2021-09-11 15:32:30 +08:00
parent c231587543
commit 274541303a
19 changed files with 562 additions and 142 deletions

View File

@@ -61,13 +61,89 @@ namespace GeekDesk.ViewModel
private string textColor = "#000000"; //字体颜色
private double imgPanelWidth = (double)CommonEnum.IMAGE_PANEL_WIDTH;
private double imgPanelHeight = (double)CommonEnum.IMAGE_PANEL_HEIGHT;
private bool marginHide = false; //贴边隐藏
private bool appAnimation = false; //主窗口动画效果
private int imageWidth = (int)CommonEnum.IMAGE_WIDTH; //图片宽度
private int imageHeight = (int)CommonEnum.IMAGE_HEIGHT; //图片高度
#region GetSet
public int ImageWidth
{
get
{
// 为了兼容旧版 暂时使用默认
if (imageWidth == 0)
{
return (int)CommonEnum.IMAGE_WIDTH;
} else
{
return imageWidth;
}
}
set
{
imageWidth = value;
//同时设置高度
ImageHeight = value;
//计算 容器宽度因子
double i = ((double)imageWidth - (double)CommonEnum.IMAGE_WIDTH) / 5d;
double s = 2.44;
i *= 2d;
while (i > 1)
{
i /= 10d;
}
if (i > 0d)
{
s -= i;
}
//设置容器宽度
ImgPanelWidth = (int)(ImageWidth * s);
OnPropertyChanged("ImageWidth");
}
}
public int ImageHeight
{
get
{
//都使用宽度来确定大小
// 为了兼容旧版 暂时使用默认
if (imageHeight == 0)
{
return (int)CommonEnum.IMAGE_HEIGHT;
}
else
{
return imageHeight;
}
}
set
{
imageHeight = value;
//计算容器高度因子
double i = ((double)imageHeight - (double)CommonEnum.IMAGE_HEIGHT) / 5d;
while (i > 1)
{
i /= 10d;
}
double s = 2.00;
if (i > 0d)
{
s -= i;
}
//设置容器高度
ImgPanelHeight = ImageHeight * s;
OnPropertyChanged("ImageHeight");
}
}
public bool AppAnimation
{

View File

@@ -20,8 +20,6 @@ namespace GeekDesk.ViewModel
private BitmapImage bitmapImage; //位图
private byte[] imageByteArr; //图片 byte数组
private string content; //显示信息
private int imageWidth = (int)CommonEnum.IMAGE_WIDTH; //图片宽度
private int imageHeight = (int)CommonEnum.IMAGE_HEIGHT; //图片高度
private bool adminStartUp = false; //始终管理员方式启动 默认否
private byte[] defaultImage; //默认图标
@@ -152,33 +150,7 @@ namespace GeekDesk.ViewModel
}
}
public int ImageWidth
{
get
{
// 为了兼容旧版 暂时使用默认
return (int)CommonEnum.IMAGE_WIDTH;
}
set
{
imageWidth = value;
OnPropertyChanged("ImageWidth");
}
}
public int ImageHeight
{
get
{
// 为了兼容旧版 暂时使用默认
return (int)CommonEnum.IMAGE_HEIGHT;
}
set
{
imageHeight = value;
OnPropertyChanged("ImageHeight");
}
}

View File

@@ -1,4 +1,5 @@
using GeekDesk.Util;
using GeekDesk.Constant;
using GeekDesk.Util;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -17,8 +18,38 @@ namespace GeekDesk.ViewModel
private string msg; //事项详情
private string exeTime; //待办时间
private string doneTime; //完成时间
private TodoTaskExecType execType = TodoTaskExecType.SET_TIME;
private string cron; //cron表达式
//private int status; //状态 0 未处理 1 已处理
public string Cron
{
get
{
return cron;
}
set
{
cron = value;
OnPropertyChanged("Cron");
}
}
public TodoTaskExecType ExecType
{
get
{
//兼容老版本 需要给个默认值
if (execType == 0) return TodoTaskExecType.SET_TIME;
return execType;
}
set
{
execType = value;
OnPropertyChanged("ExecType");
}
}
public string DoneTime
{