1
lx
2025-08-07 0c104a6455d55a8d50f5164638827ac5c88cc51c
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
namespace ErrorAnalysis.UI
{
    partial class Report
    {
        /// <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()
        {
            btnExport = new Button();
            btnCancel = new Button();
            rdoWord = new RadioButton();
            rdoPdf = new RadioButton();
            SuspendLayout();
            // 
            // btnExport
            // 
            btnExport.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
            btnExport.Location = new Point(147, 52);
            btnExport.Name = "btnExport";
            btnExport.Size = new Size(75, 23);
            btnExport.TabIndex = 1;
            btnExport.Text = "Export";
            btnExport.UseVisualStyleBackColor = true;
            btnExport.Click += btnExport_Click;
            // 
            // btnCancel
            // 
            btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
            btnCancel.Location = new Point(66, 52);
            btnCancel.Name = "btnCancel";
            btnCancel.Size = new Size(75, 23);
            btnCancel.TabIndex = 2;
            btnCancel.Text = "Cancel";
            btnCancel.UseVisualStyleBackColor = true;
            btnCancel.Click += btnCancel_Click;
            // 
            // rdoWord
            // 
            rdoWord.AutoSize = true;
            rdoWord.Location = new Point(109, 12);
            rdoWord.Name = "rdoWord";
            rdoWord.Size = new Size(65, 21);
            rdoWord.TabIndex = 4;
            rdoWord.Text = "WORD";
            rdoWord.UseVisualStyleBackColor = true;
            // 
            // rdoPdf
            // 
            rdoPdf.AutoSize = true;
            rdoPdf.Checked = true;
            rdoPdf.Location = new Point(31, 12);
            rdoPdf.Name = "rdoPdf";
            rdoPdf.Size = new Size(48, 21);
            rdoPdf.TabIndex = 3;
            rdoPdf.TabStop = true;
            rdoPdf.Text = "PDF";
            rdoPdf.UseVisualStyleBackColor = true;
            // 
            // Report
            // 
            AutoScaleDimensions = new SizeF(7F, 17F);
            AutoScaleMode = AutoScaleMode.Font;
            ClientSize = new Size(226, 81);
            Controls.Add(rdoWord);
            Controls.Add(rdoPdf);
            Controls.Add(btnCancel);
            Controls.Add(btnExport);
            MaximizeBox = false;
            MinimizeBox = false;
            Name = "Report";
            StartPosition = FormStartPosition.CenterScreen;
            Text = "Report";
            ResumeLayout(false);
            PerformLayout();
        }
 
        #endregion
        private Button btnExport;
        private Button btnCancel;
        private RadioButton rdoWord;
        private RadioButton rdoPdf;
    }
}