diff --git a/Views/UserControl/ViewportData/Entity/ColorConfigEntity.cs b/Views/UserControl/ViewportData/Entity/ColorConfigEntity.cs index 2d8a98c..4df96eb 100644 --- a/Views/UserControl/ViewportData/Entity/ColorConfigEntity.cs +++ b/Views/UserControl/ViewportData/Entity/ColorConfigEntity.cs @@ -12,7 +12,7 @@ public class ColorConfigEntity private string _mainBorderColor = "#FF6959CC"; private string _selFacetColor = "#FFBDB759"; - private string _selBordertColor = "#FF000000"; + private string _selBorderColor = "#FF000000"; private string _selTypeColor = "#FFFCFCD1"; private string _selFontColor = "#FFF4A061"; private string _selLineColor; @@ -76,15 +76,15 @@ public class ColorConfigEntity /// /// 选中边框颜色 /// - public Color4 SelBordertColor + public Color4 SelBorderColor { get { - return CommonHelper.HexToColor4(_selBordertColor); + return CommonHelper.HexToColor4(_selBorderColor); } set { - _selBordertColor = CommonHelper.Color4ToHex(value); + _selBorderColor = CommonHelper.Color4ToHex(value); } }