|
|
|
@ -31,28 +31,46 @@
@@ -31,28 +31,46 @@
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
<Files> |
|
|
|
|
<File name="MainForm.cs" language="C#"><![CDATA[${StandardHeader.C#} |
|
|
|
|
<File name="Program.cs" language="C#"><![CDATA[${StandardHeader.C#} |
|
|
|
|
|
|
|
|
|
using System; |
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Drawing; |
|
|
|
|
using System.Windows.Forms; |
|
|
|
|
|
|
|
|
|
namespace ${StandardNamespace} |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Description of MainForm. |
|
|
|
|
/// Class with program entry point. |
|
|
|
|
/// </summary> |
|
|
|
|
public partial class MainForm : Form |
|
|
|
|
internal sealed class Program |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Program entry point. |
|
|
|
|
/// </summary> |
|
|
|
|
[STAThread] |
|
|
|
|
public static void Main(string[] args) |
|
|
|
|
private static void Main(string[] args) |
|
|
|
|
{ |
|
|
|
|
Application.EnableVisualStyles(); |
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false); |
|
|
|
|
Application.Run(new MainForm()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
]]></File> |
|
|
|
|
<File name="MainForm.cs" language="C#"><![CDATA[${StandardHeader.C#} |
|
|
|
|
|
|
|
|
|
using System; |
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Drawing; |
|
|
|
|
using System.Windows.Forms; |
|
|
|
|
|
|
|
|
|
namespace ${StandardNamespace} |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Description of MainForm. |
|
|
|
|
/// </summary> |
|
|
|
|
public partial class MainForm : Form |
|
|
|
|
{ |
|
|
|
|
public MainForm() |
|
|
|
|
{ |
|
|
|
|
// |
|
|
|
|