-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyProgressBarControl.cs
89 lines (78 loc) · 3.14 KB
/
MyProgressBarControl.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
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Drawing;
using DevExpress.XtraEditors.Registrator;
using DevExpress.XtraEditors.Repository;
using DevExpress.XtraEditors.ViewInfo;
using DevExpress.XtraPrinting;
using System;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace WindowsApplication1
{
public class MyProgressBarControl : ProgressBarControl
{
static MyProgressBarControl()
{
RepositoryItemMyProgressBarControl.RegisterMyProgressBarControl();
}
public MyProgressBarControl()
: base()
{
}
public override string EditorTypeName {
get {
return RepositoryItemMyProgressBarControl.MyProgressBarControlName;
}
}
public new RepositoryItemMyProgressBarControl Properties {
get {
return (RepositoryItemMyProgressBarControl)base.Properties;
}
}
[UserRepositoryItem("RegisterMyProgressBarControl")]
public class RepositoryItemMyProgressBarControl : RepositoryItemProgressBar
{
public const string MyProgressBarControlName = "MyProgressBarControl";
static RepositoryItemMyProgressBarControl()
{
RegisterMyProgressBarControl();
}
public RepositoryItemMyProgressBarControl()
: base()
{
}
public override VisualBrick GetBrick(PrintCellHelperInfo info)
{
Bitmap bmp = new Bitmap(info.Rectangle.Width, info.Rectangle.Height);
Graphics gr = Graphics.FromImage(bmp);
gr.FillRectangle(new SolidBrush(Color.White), info.Rectangle);
ImageBrick brick = new ImageBrick(BorderSide.None, 0, Color.Transparent, Color.Transparent);
int width = Convert.ToInt32(info.Rectangle.Width * Convert.ToDouble(info.EditValue) / ((double)100));
if(width > 0)
{
gr.FillRectangle(new LinearGradientBrush(new Rectangle(0, 0, width, info.Rectangle.Height), Color.LightBlue, Color.White, 90, true), new Rectangle(0, 0, width, info.Rectangle.Height));
brick.Image = bmp;
}
gr.DrawString(info.DisplayText, info.Appearace.Font, new SolidBrush(Color.Black), new PointF(0, 0));
brick.Rect = info.Rectangle;
return brick;
}
public static void RegisterMyProgressBarControl()
{
EditorRegistrationInfo.Default.Editors.Add(new EditorClassInfo(MyProgressBarControlName, typeof(MyProgressBarControl), typeof(RepositoryItemMyProgressBarControl), typeof(MyProgressBarViewInfo), new ProgressBarPainter(), true));
}
public override string EditorTypeName {
get {
return MyProgressBarControlName;
}
}
}
public class MyProgressBarViewInfo : ProgressBarViewInfo
{
public MyProgressBarViewInfo(RepositoryItem item)
: base(item)
{
}
}
}
}