OSDN Git Service

#xxxxx SystemNameをDTXManiaLog.txtに出力しないよう修正。(thanks to mowmowさん)
[dtxmania/dtxmania.git] / DTX2WAV / Form_FInished_OK.cs
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Threading.Tasks;
9 using System.Windows.Forms;
10
11 namespace DTX2WAV
12 {
13         public partial class Form_Finished_OK : Form
14         {
15                 public Form_Finished_OK()
16                 {
17                         InitializeComponent();
18                 }
19
20                 private void button_OK_Click(object sender, EventArgs e)
21                 {
22                         this.Close();
23                 }
24
25                 private void Form_Finished_OK_Shown(object sender, EventArgs e)
26                 {
27                         Bitmap canvas = new Bitmap(pictureBox_OKIcon.Width, pictureBox_OKIcon.Height);
28                         Graphics g = Graphics.FromImage(canvas);
29
30                         g.DrawIcon(SystemIcons.Information, 0, 0);
31                         g.Dispose();
32                         pictureBox_OKIcon.Image = canvas;
33                 }
34         }
35 }