添加项目文件。

This commit is contained in:
akwkevin
2021-07-23 09:42:22 +08:00
commit f25a958797
2798 changed files with 352360 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Media;
namespace Util.DiagramDesigner
{
public class StrokeDashArray
{
public static readonly List<DoubleCollection> Dash = new List<DoubleCollection>
{
new DoubleCollection() { 1, 0 },
new DoubleCollection() { 8, 4 },
new DoubleCollection() { 1, 4 },
new DoubleCollection() { 8, 4, 2, 4 },
new DoubleCollection() { 8, 4, 2, 4, 2, 4 },
new DoubleCollection() { 8, 4, 8, 4, 2, 4 },
new DoubleCollection() { 18, 4, 4, 4 },
new DoubleCollection() { 18, 4, 4, 4, 4, 4 },
new DoubleCollection() { 4, 4 },
new DoubleCollection() { 2, 2 },
new DoubleCollection() { 5, 2, 2, 2 },
new DoubleCollection() { 5, 2, 2, 2, 2, 2 },
new DoubleCollection() { 10, 4, 4, 4 },
new DoubleCollection() { 10, 4, 4, 4, 4, 4 },
new DoubleCollection() { 16, 8 },
new DoubleCollection() { 2, 8 },
new DoubleCollection() { 16, 8, 2, 8 },
new DoubleCollection() { 16, 8, 2, 8, 2, 8 },
new DoubleCollection() { 16, 8, 16, 8, 2, 8 },
new DoubleCollection() { 40, 8, 8, 8 },
new DoubleCollection() { 40, 8, 8, 8, 8, 8 },
new DoubleCollection() { 4, 2 },
};
}
}