Develop and Download Open Source Software

Browse Subversion Repository

Contents of /TransparentizeWindow/MainForm.Designer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9 - (show annotations) (download)
Tue Apr 16 05:19:23 2013 UTC (10 years, 11 months ago) by yuuan
File size: 5004 byte(s)
- 設定が変更できないバグを修正
- 著作権表示のリンク先を変更
1 namespace TransparentizePutty
2 {
3 partial class MainForm
4 {
5 /// <summary>
6 /// 必要なデザイナ変数です。
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// 使用中のリソースをすべてクリーンアップします。
12 /// </summary>
13 /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows フォーム デザイナで生成されたコード
24
25 /// <summary>
26 /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
27 /// コード エディタで変更しないでください。
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.components = new System.ComponentModel.Container();
32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
33 this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
34 this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
35 this.imageList = new System.Windows.Forms.ImageList(this.components);
36 this.timer = new System.Windows.Forms.Timer(this.components);
37 this.labelTitle = new System.Windows.Forms.Label();
38 this.SuspendLayout();
39 //
40 // notifyIcon
41 //
42 this.notifyIcon.ContextMenuStrip = this.contextMenuStrip;
43 this.notifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon.Icon")));
44 this.notifyIcon.Text = "とらぷてぃ。";
45 this.notifyIcon.Visible = true;
46 this.notifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon_MouseDoubleClick);
47 //
48 // contextMenuStrip
49 //
50 this.contextMenuStrip.Name = "contextMenuStrip";
51 this.contextMenuStrip.Size = new System.Drawing.Size(61, 4);
52 this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
53 //
54 // imageList
55 //
56 this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
57 this.imageList.TransparentColor = System.Drawing.Color.Transparent;
58 this.imageList.Images.SetKeyName(0, "application.png");
59 this.imageList.Images.SetKeyName(1, "applicationTransparent.ico");
60 //
61 // timer
62 //
63 this.timer.Interval = 500;
64 this.timer.Tick += new System.EventHandler(this.timer_Tick);
65 //
66 // labelTitle
67 //
68 this.labelTitle.BackColor = System.Drawing.Color.White;
69 this.labelTitle.Dock = System.Windows.Forms.DockStyle.Fill;
70 this.labelTitle.Font = new System.Drawing.Font("メイリオ", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
71 this.labelTitle.ForeColor = System.Drawing.Color.RoyalBlue;
72 this.labelTitle.Location = new System.Drawing.Point(0, 0);
73 this.labelTitle.Name = "labelTitle";
74 this.labelTitle.Size = new System.Drawing.Size(144, 52);
75 this.labelTitle.TabIndex = 1;
76 this.labelTitle.Text = "とらぷてぃ。";
77 this.labelTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
78 this.labelTitle.Click += new System.EventHandler(this.labelTitle_Click);
79 //
80 // MainForm
81 //
82 this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 18F);
83 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
84 this.ClientSize = new System.Drawing.Size(144, 52);
85 this.Controls.Add(this.labelTitle);
86 this.Enabled = false;
87 this.Font = new System.Drawing.Font("メイリオ", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
88 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
89 this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
90 this.MaximizeBox = false;
91 this.MinimizeBox = false;
92 this.Name = "MainForm";
93 this.ShowInTaskbar = false;
94 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
95 this.Text = "とらぷてぃ。";
96 this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
97 this.Load += new System.EventHandler(this.MainForm_Load);
98 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
99 this.ResumeLayout(false);
100
101 }
102
103 #endregion
104
105 private System.Windows.Forms.NotifyIcon notifyIcon;
106 private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
107 private System.Windows.Forms.ImageList imageList;
108 private System.Windows.Forms.Timer timer;
109 private System.Windows.Forms.Label labelTitle;
110 }
111 }
112

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