123456789101112131415161718192021222324 |
- using MECF.Framework.UI.Core.DxfScript.Converter;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
- namespace MECF.Framework.UI.Core.DxfScript
- {
- public static class GasMapProvider
- {
- public static GasDxfDocument GasMap { get; set; }
- public static Brush ChangeMFCColor = ColorConverterHelper.ConvertHexToBrush("#ffffcc");
- public static Brush InitMFCColor = ColorConverterHelper.ConvertHexToBrush("#FFB0D1F1");
- public static Brush InitColor = new SolidColorBrush(Colors.Black);
-
-
-
- }
- }
|