forked from tianruoyouxin/tianruoocr_last
-
Notifications
You must be signed in to change notification settings - Fork 409
/
FmScreenPaste.Designer.cs
85 lines (74 loc) · 3.85 KB
/
FmScreenPaste.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
82
83
84
85
namespace TrOCR
{
public partial class FmScreenPaste : global::System.Windows.Forms.Form
{
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.RightMenu = new global::System.Windows.Forms.ContextMenuStrip();
this.关闭ToolStripMenuItem = new global::System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new global::System.Windows.Forms.ToolStripSeparator();
this.toolStripMenuItem6 = new global::System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem8 = new global::System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new global::System.Windows.Forms.ToolStripSeparator();
this.置顶ToolStripMenuItem = new global::System.Windows.Forms.ToolStripMenuItem();
this.RightMenu.SuspendLayout();
base.SuspendLayout();
this.RightMenu.Items.AddRange(new global::System.Windows.Forms.ToolStripItem[]
{
this.关闭ToolStripMenuItem,
this.toolStripSeparator1,
this.toolStripMenuItem6,
this.toolStripMenuItem8,
this.toolStripSeparator2,
this.置顶ToolStripMenuItem
});
this.RightMenu.Name = "dSkinContextMenuStrip2";
this.RightMenu.ShowImageMargin = false;
this.RightMenu.Size = new global::System.Drawing.Size(124, 126);
this.RightMenu.Opening += new global::System.ComponentModel.CancelEventHandler(this.RightCMS_Opening);
this.关闭ToolStripMenuItem.Name = "关闭ToolStripMenuItem";
this.关闭ToolStripMenuItem.Size = new global::System.Drawing.Size(123, 22);
this.关闭ToolStripMenuItem.Text = "关闭";
this.关闭ToolStripMenuItem.Click += new global::System.EventHandler(this.关闭ToolStripMenuItem_Click);
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new global::System.Drawing.Size(120, 6);
this.toolStripMenuItem6.Name = "toolStripMenuItem6";
this.toolStripMenuItem6.Size = new global::System.Drawing.Size(123, 22);
this.toolStripMenuItem6.Text = "复制图像";
this.toolStripMenuItem6.Click += new global::System.EventHandler(this.复制toolStripMenuItem_Click);
this.toolStripMenuItem8.Name = "toolStripMenuItem8";
this.toolStripMenuItem8.Size = new global::System.Drawing.Size(123, 22);
this.toolStripMenuItem8.Text = "图像另存为";
this.toolStripMenuItem8.Click += new global::System.EventHandler(this.保存toolStripMenuItem_Click);
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new global::System.Drawing.Size(120, 6);
this.置顶ToolStripMenuItem.Name = "置顶窗体ToolStripMenuItem";
this.置顶ToolStripMenuItem.Size = new global::System.Drawing.Size(123, 22);
this.置顶ToolStripMenuItem.Text = "置顶窗体";
this.置顶ToolStripMenuItem.Click += new global::System.EventHandler(this.置顶ToolStripMenuItem_Click);
this.ContextMenuStrip = this.RightMenu;
base.StartPosition = global::System.Windows.Forms.FormStartPosition.Manual;
base.TopMost = true;
base.ShowInTaskbar = false;
this.RightMenu.ResumeLayout(false);
base.ResumeLayout(false);
}
private global::System.ComponentModel.IContainer components;
private global::System.Windows.Forms.ContextMenuStrip RightMenu;
private global::System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6;
private global::System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
private global::System.Windows.Forms.ToolStripMenuItem 关闭ToolStripMenuItem;
private global::System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private global::System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private global::System.Windows.Forms.ToolStripMenuItem 置顶ToolStripMenuItem;
}
}