WeighterColorDB.cs 2.07 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
using System;
using System.Collections.Generic;

using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Data;
using System.Windows.Media;

namespace FLY.Weight2.UI.Client
{
    public class WeighterColorDB
    {        
        class WeighterColor
        {
            public Brush Self;
            public WeighterColor()
            {
            }
        }
23
        static List<WeighterColor> mWeighters;
24 25 26 27
        static WeighterColorDB()
        {


潘栩锋's avatar
潘栩锋 committed
28 29 30 31 32 33 34
            //if (File.Exists("weighterColorDb.json"))
            //{
            //    string json = File.ReadAllText("weighterColorDb.json");
            //    mWeighters = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, WeighterColor>>(json);
            //}
            //else 
            //{
35 36 37 38 39
                ResourceDictionary r = new ResourceDictionary()
                {
                    Source = new Uri("pack://application:,,,/FLY.Weight2.UI.Client;component/Themes/Dictionary_CellColor.xaml")
                };

40
                mWeighters = new List<WeighterColor>();
41 42 43 44 45 46

                for (int i = 0; i < 5; i++)
                {
                    WeighterColor c = new WeighterColor();
                    string color_name = "Color_g" + (i + 1).ToString() + "#0";
                    c.Self = r[color_name] as Brush;
47
                    mWeighters.Add(c);
48
                }
潘栩锋's avatar
潘栩锋 committed
49
            //}
50 51
        }

52
        public static Brush GetSelf(int index)
53
        {
54
            if (index<0 || index>=mWeighters.Count())
55
                return null;
56
            return mWeighters[index].Self; 
57 58 59 60 61 62
        }
    }
    public class Number2ColorValueConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
63 64
            int index = (int)value;
            return WeighterColorDB.GetSelf(index);
65 66 67 68 69 70 71
        }
        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }
}