-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFastGridCellImpl.cs
94 lines (82 loc) · 2.64 KB
/
FastGridCellImpl.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace FastWpfGrid
{
public class FastGridBlockImpl : IFastGridCellBlock
{
public FastGridBlockType BlockType { get; set; }
public Color? FontColor { get; set; }
public bool IsItalic { get; set; }
public bool IsBold { get; set; }
public string TextData { get; set; }
public string ImageSource { get; set; }
public int ImageWidth { get; set; }
public int ImageHeight { get; set; }
public MouseHoverBehaviours MouseHoverBehaviour { get; set; }
public object CommandParameter { get; set; }
public string ToolTip { get; set; }
public FastGridBlockImpl()
{
MouseHoverBehaviour = MouseHoverBehaviours.ShowAllWhenMouseOut;
}
}
public class FastGridCellImpl : IFastGridCell
{
public Color? BackgroundColor { get; set; }
public CellDecoration Decoration { get; set; }
public Color? DecorationColor { get; set; }
public string ToolTipText { get; set; }
public TooltipVisibilityMode ToolTipVisibility { get; set; }
public List<FastGridBlockImpl> Blocks = new List<FastGridBlockImpl>();
public int BlockCount
{
get { return Blocks.Count; }
}
public int RightAlignBlockCount { get; set; }
public IFastGridCellBlock GetBlock(int blockIndex)
{
return Blocks[blockIndex];
}
public string GetEditText()
{
return null;
}
public void SetEditText(string value)
{
}
public IEnumerable<FastGridBlockImpl> SetBlocks
{
set
{
Blocks.Clear();
Blocks.AddRange(value);
}
}
public FastGridBlockImpl AddImageBlock(string image, int width = 16, int height = 16)
{
var res = new FastGridBlockImpl
{
BlockType = FastGridBlockType.Image,
ImageWidth = width,
ImageHeight = height,
ImageSource = image,
};
Blocks.Add(res);
return res;
}
public FastGridBlockImpl AddTextBlock(object text)
{
var res = new FastGridBlockImpl
{
BlockType = FastGridBlockType.Text,
TextData = text == null ? null : text.ToString(),
};
Blocks.Add(res);
return res;
}
}
}