OSDN Git Service

DTXManiaソリューション、DTXManiaプロジェクト、DTXCreatorプロジェクト、FDKプロジェクトについて英語化。
[dtxmania/dtxmania.git] / DTXCreatorプロジェクト / コード / 00.全体 / Cバージョン情報.cs
diff --git a/DTXCreatorプロジェクト/コード/00.全体/Cバージョン情報.cs b/DTXCreatorプロジェクト/コード/00.全体/Cバージョン情報.cs
deleted file mode 100644 (file)
index 61696da..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-using System;\r
-using System.Collections.Generic;\r
-using System.Text;\r
-using System.Windows.Forms;\r
-using System.ComponentModel;\r
-using System.Drawing;\r
-using DTXCreator.Properties;\r
-\r
-namespace DTXCreator\r
-{\r
-       public partial class Cバージョン情報 : Form\r
-       {\r
-               public Cバージョン情報()\r
-               {\r
-                       this.InitializeComponent();\r
-               }\r
-\r
-               #region [ private ]\r
-               //-----------------\r
-               private void Cバージョン情報_Click( object sender, EventArgs e )\r
-               {\r
-                       base.Close();\r
-               }\r
-               private void Cバージョン情報_KeyDown( object sender, KeyEventArgs e )\r
-               {\r
-                       if( e.KeyCode == Keys.Escape )\r
-                       {\r
-                               base.Close();\r
-                       }\r
-               }\r
-               private void Cバージョン情報_Paint( object sender, PaintEventArgs e )\r
-               {\r
-                       Font font = new System.Drawing.Font( "Arial", 8f, FontStyle.Bold );\r
-                       Brush brush = new SolidBrush( Color.FromArgb( 0xff, 179, 194, 251 ) );\r
-                       Rectangle layoutRectangle = new Rectangle( 8, 54, 400, 40 );\r
-                       e.Graphics.DrawString( "Copyright (c) 2000-2016 FROM/K.YAMASAKI All rights reserved.\nMIDI Import feature powered by _t3__", font, brush, layoutRectangle );\r
-                       brush.Dispose();\r
-                       font.Dispose();\r
-\r
-                       font = new System.Drawing.Font( "MS US Gothic", 12f, FontStyle.Regular );\r
-                       brush = new SolidBrush( Color.FromArgb( 0xff, 220, 220, 220 ) );\r
-                       layoutRectangle = new Rectangle( 330, 220, 150, 20 );\r
-                       e.Graphics.DrawString( "Release " + Resources.DTXC_VERSION, font, brush, layoutRectangle );\r
-            brush.Dispose();\r
-                       font.Dispose();\r
-               }\r
-               //-----------------\r
-               #endregion\r
-       }\r
-}\r