forked from AnyListen/tianruoocr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessageload.cs
More file actions
39 lines (34 loc) · 760 Bytes
/
Messageload.cs
File metadata and controls
39 lines (34 loc) · 760 Bytes
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
using System;
using System.Drawing;
using System.Windows.Forms;
namespace TrOCR
{
public partial class Messageload : Form
{
public Messageload()
{
InitializeComponent();
}
public void Form1_Load(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
public void InitializeComponent()
{
SuspendLayout();
AutoScaleDimensions = new SizeF(6f, 12f);
FormBorderStyle = FormBorderStyle.None;
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.White;
ClientSize = new Size(0, 0);
ForeColor = Color.Black;
MaximizeBox = false;
MinimizeBox = false;
Name = "Form1";
Text = "弹窗";
Load += Form1_Load;
ResumeLayout(false);
PerformLayout();
}
}
}