-
Notifications
You must be signed in to change notification settings - Fork 1
/
Form1.Designer.cs
82 lines (75 loc) · 3.11 KB
/
Form1.Designer.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
namespace PhotoViewer
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (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.btn_close = new DevExpress.XtraEditors.SimpleButton();
this.photoEditor1 = new PhotoViewer.PhotoEditor();
this.SuspendLayout();
//
// btn_close
//
this.btn_close.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btn_close.Location = new System.Drawing.Point(791, 115);
this.btn_close.Name = "btn_close";
this.btn_close.Size = new System.Drawing.Size(55, 33);
this.btn_close.TabIndex = 1;
this.btn_close.Text = "Close";
this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
//
// photoEditor1
//
this.photoEditor1.AllowAddPicture = true;
this.photoEditor1.AllowDeletePicture = false;
this.photoEditor1.Dock = System.Windows.Forms.DockStyle.Fill;
this.photoEditor1.IndexImage = 0;
this.photoEditor1.Location = new System.Drawing.Point(0, 0);
this.photoEditor1.Name = "photoEditor1";
this.photoEditor1.Size = new System.Drawing.Size(891, 489);
this.photoEditor1.TabIndex = 0;
this.photoEditor1.URL_IMAGE = "";
//
// Form1
//
this.Appearance.BackColor = System.Drawing.Color.Gray;
this.Appearance.Options.UseBackColor = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btn_close;
this.ClientSize = new System.Drawing.Size(891, 489);
this.Controls.Add(this.photoEditor1);
this.Controls.Add(this.btn_close);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "Form1";
this.Text = "Photo Viewer";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private PhotoEditor photoEditor1;
private DevExpress.XtraEditors.SimpleButton btn_close;
}
}