Develop and Download Open Source Software

Browse Subversion Repository

Contents of /TransparentizeWindow/Program.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7 - (show annotations) (download)
Tue Feb 5 03:17:08 2013 UTC (11 years, 2 months ago) by yuuan
File size: 544 byte(s)
- メインフォームと設定フォームを分離
- 英語版PuTTYの設定画面も透過しないようにできるように修正
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Windows.Forms;
5
6 namespace TransparentizePutty
7 {
8 static class Program
9 {
10 /// <summary>
11 /// アプリケーションのメイン エントリ ポイントです。
12 /// </summary>
13 [STAThread]
14 static void Main()
15 {
16 Application.EnableVisualStyles();
17 Application.SetCompatibleTextRenderingDefault(false);
18 Application.Run(new MainForm());
19 }
20 }
21 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26