-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm1.cs
251 lines (224 loc) · 9.92 KB
/
Form1.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
using DevExpress.XtraGrid.Columns;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Controls;
using DevExpress.XtraEditors.Repository;
using DevExpress.Utils.Controls;
using DevExpress.Pdf.ContentGeneration.Interop;
using DevExpress.XtraGrid;
using System.Collections.Generic;
using DevExpress.XtraGrid.Views.Card;
using DevExpress.XtraGrid.Views.Grid;
namespace ImagesInCells
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private DevExpress.XtraGrid.GridControl gridControl1;
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.gridControl1 = new DevExpress.XtraGrid.GridControl();
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
this.SuspendLayout();
//
// gridControl1
//
this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.gridControl1.Location = new System.Drawing.Point(0, 0);
this.gridControl1.MainView = this.gridView1;
this.gridControl1.Name = "gridControl1";
this.gridControl1.Size = new System.Drawing.Size(665, 372);
this.gridControl1.TabIndex = 0;
this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
this.gridView1});
//
// gridView1
//
this.gridView1.GridControl = this.gridControl1;
this.gridView1.Name = "gridView1";
this.gridView1.OptionsView.RowAutoHeight = true;
this.gridView1.OptionsView.ShowGroupPanel = false;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(666, 372);
this.Controls.Add(this.gridControl1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private Image GetImageFromResource(string fileName) {
var value = Properties.Resources.ResourceManager.GetObject(fileName, Properties.Resources.Culture);
return value as Image;
}
private byte[] GetImageData(string fileName) {
Image img = GetImageFromResource(fileName);
using(var mem = new MemoryStream()) {
img.Save(mem, System.Drawing.Imaging.ImageFormat.Bmp);
return mem.GetBuffer();
}
}
DataTable CreateTable()
{
DataTable table = new DataTable();
DataRow dataRow;
table.Columns.Add("CheckEdit", typeof(bool));
table.Columns.Add("ImageComboBox", typeof(int));
table.Columns.Add("PictureEdit", typeof(Image));
table.Columns.Add("ContextImage", typeof(string));
table.Columns.Add("HTMLImage", typeof(string));
table.Columns.Add("CustomDraw", typeof(string));
dataRow = table.NewRow();
dataRow["CheckEdit"] = true;
dataRow["ImageComboBox"] = 1;
dataRow["PictureEdit"] = GetImageFromResource("Image5");
dataRow["ContextImage"] = "Text1";
dataRow["CustomDraw"] = "Image0";
table.Rows.Add(dataRow);
dataRow = table.NewRow();
dataRow["CheckEdit"] = false;
dataRow["ImageComboBox"] = 2;
dataRow["PictureEdit"] = null;
dataRow["ContextImage"] = "";
//"<image=show_16x16.png> Image left"
dataRow["HTMLImage"] = "Text " + "<image=Image7.png>";
dataRow["CustomDraw"] = "Image1";
table.Rows.Add(dataRow);
dataRow = table.NewRow();
dataRow["CheckEdit"] = false;
dataRow["ImageComboBox"] = 3;
dataRow["PictureEdit"] = null;
dataRow["ContextImage"] = "Text3";
dataRow["CustomDraw"] = "Image2";
table.Rows.Add(dataRow);
return table;
}
private void Form1_Load(object sender, System.EventArgs e) {
gridControl1.DataSource = CreateTable();
gridView1.CustomDrawCell += GridView1_CustomDrawCell;
gridView1.CustomUnboundColumnData += GridView1_CustomUnboundColumnData;
RepositoryItemCheckEdit checkEdit = gridControl1.RepositoryItems.Add("CheckEdit") as RepositoryItemCheckEdit;
checkEdit.PictureChecked = GetImageFromResource("Image0");
checkEdit.PictureUnchecked = GetImageFromResource("Image1");
checkEdit.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
gridView1.Columns["CheckEdit"].ColumnEdit = checkEdit;
RepositoryItemImageComboBox imageCombo = gridControl1.RepositoryItems.Add("ImageComboBoxEdit") as RepositoryItemImageComboBox;
DevExpress.Utils.ImageCollection images = new DevExpress.Utils.ImageCollection();
images.AddImage(GetImageFromResource("Image2"));
images.AddImage(GetImageFromResource("Image3"));
images.AddImage(GetImageFromResource("Image4"));
imageCombo.SmallImages = images;
imageCombo.Items.Add(new ImageComboBoxItem("Minor", 1, 0));
imageCombo.Items.Add(new ImageComboBoxItem("Moderate", 2, 1));
imageCombo.Items.Add(new ImageComboBoxItem("Severe", 3, 2));
imageCombo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
gridControl1.RepositoryItems.Add(imageCombo);
gridView1.Columns["ImageComboBox"].ColumnEdit = imageCombo;
RepositoryItemPictureEdit pictureEdit = gridControl1.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;
pictureEdit.SizeMode = PictureSizeMode.Zoom;
pictureEdit.NullText = " ";
gridView1.Columns["PictureEdit"].ColumnEdit = pictureEdit;
gridControl1.RepositoryItems.Add(pictureEdit);
RepositoryItemTextEdit textEdit = new RepositoryItemTextEdit();
textEdit.ContextImageOptions.Image = GetImageFromResource("Image6");
gridView1.Columns["ContextImage"].ColumnEdit = textEdit;
gridControl1.RepositoryItems.Add(textEdit);
RepositoryItemHypertextLabel buttonEdit = new RepositoryItemHypertextLabel();
buttonEdit.TextEditStyle = TextEditStyles.DisableTextEditor;
buttonEdit.AllowHtmlDraw = DevExpress.Utils.DefaultBoolean.True;
var collection = new DevExpress.Utils.ImageCollection();
collection.AddImage(GetImageFromResource("Image7"));
collection.Images.SetKeyName(0, "Image7.png");
buttonEdit.HtmlImages = collection;
gridView1.Columns["HTMLImage"].ColumnEdit = buttonEdit;
gridControl1.RepositoryItems.Add(buttonEdit);
gridView1.Columns.Add(new DevExpress.XtraGrid.Columns.GridColumn() {
Caption = "Unbound Column",
FieldName = "UnboundColumn",
UnboundDataType = typeof(object),
Visible = true
});
RepositoryItemPictureEdit pictureEditUnbound = gridControl1.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;
pictureEditUnbound.SizeMode = PictureSizeMode.Zoom;
pictureEditUnbound.NullText = " ";
gridView1.Columns["UnboundColumn"].ColumnEdit = pictureEditUnbound;
gridControl1.RepositoryItems.Add(pictureEditUnbound);
}
Dictionary<string, Image> imageCache = new Dictionary<string, Image>();
private void GridView1_CustomUnboundColumnData(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDataEventArgs e) {
if (e.IsSetData)
return;
GridView view = sender as GridView;
var path = (string)view.GetListSourceRowCellValue(e.ListSourceRowIndex, "CustomDraw");
if (string.IsNullOrEmpty(path))
return;
try {
e.Value = GetImageFromResource(path);
} catch { }
}
private void GridView1_CustomDrawCell(object sender, DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventArgs e) {
if (e.RowHandle != GridControl.NewItemRowHandle && e.Column.FieldName == "CustomDraw") {
e.DisplayText = string.Empty;
e.DefaultDraw();
e.Cache.DrawImage(GetImageFromResource(e.CellValue.ToString()), e.Bounds.X, e.Bounds.Y);
}
}
}
}