Skip to content

Commit ccfdfc0

Browse files
committed
update
1 parent 263db15 commit ccfdfc0

File tree

10 files changed

+14
-2
lines changed

10 files changed

+14
-2
lines changed

Form.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ private void Form_DragDrop(object sender, DragEventArgs e) // 收到拖放,判
173173
}
174174
else
175175
{
176-
File_DragDrop(((string[])e.Data.GetData(DataFormats.FileDrop))[0]);
176+
File_DragDrop(((string[])e.Data.GetData(DataFormats.SymbolicLink))[0]);
177+
//File_DragDrop(((string[])e.Data.GetData(DataFormats.FileDrop))[0]);
177178
}
178179
}
179180

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
**Windows10 磁贴美化小工具**
99

10-
闲的没事用 C# 重写了一遍 磁贴美化小工具,并开源了(虽然也没人看)~
10+
最近体验了下 Win10 2004 的新版磁贴(开启方法见网盘),统一背景颜色为主题色,且支持磁贴半透明了,感觉还不错。于是我闲的没事用 C# 重写了一遍,并开源了(虽然也没人看)~
1111
详细介绍、使用说明请看:https://zhuanlan.zhihu.com/p/79630122
1212

1313
****
@@ -21,6 +21,17 @@
2121
> 右键菜单示例
2222
2323

24+
## 效果示例
25+
26+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/09.png)
27+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/10.png)
28+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/03.png)
29+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/04.png)
30+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/05.png)
31+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/06.png)
32+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/07.png)
33+
![](https://raw.githubusercontent.com/XIU2/TileTool/master/img/08.png)
34+
2435
****
2536

2637
## 下载地址

img/03.png

78.5 KB
Loading

img/04.png

38.4 KB
Loading

img/05.png

37.6 KB
Loading

img/06.png

114 KB
Loading

img/07.png

114 KB
Loading

img/08.png

104 KB
Loading

img/09.png

71.9 KB
Loading

img/10.png

78.1 KB
Loading

0 commit comments

Comments
 (0)