年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
581 B

using System;
using System.Drawing;
namespace Kingo.Mobile.Shape2KOTool.XSDClass
{
// Token: 0x02000007 RID: 7
public abstract class Renderer : TypeObject
{
// Token: 0x0600005E RID: 94 RVA: 0x0000276C File Offset: 0x0000096C
public static Renderer GetDefault()
{
return new SimpleRenderer
{
Label = "默认样式",
Symbol = new SFSymbol
{
Color = CommonMethod.GetInt4ColorFromColor(Color.AliceBlue),
Outline = new SLSymbol
{
Color = CommonMethod.GetInt4ColorFromColor(Color.Black),
Width = 0.4
}
}
};
}
}
}