Develop and Download Open Source Software

Browse Subversion Repository

Contents of /NeoFT/Controls/SatelliteControl.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download)
Tue Mar 25 12:06:05 2008 UTC (16 years ago) by c477
File size: 2709 byte(s)


1 using System;
2 using System.Collections;
3 using System.ComponentModel;
4 using System.Drawing;
5 using System.Data;
6 using System.Windows.Forms;
7
8 namespace nft.controls
9 {
10 /// <summary>
11 /// SatelliteControl の概要の説明です。
12 /// </summary>
13 public class SatelliteControl : System.Windows.Forms.UserControl
14 {
15 private nft.controls.ImageButton imageButton1;
16 private nft.controls.ImageButton imageButton2;
17 /// <summary>
18 /// 必要なデザイナ変数です。
19 /// </summary>
20 private System.ComponentModel.Container components = null;
21
22 public SatelliteControl()
23 {
24 // この呼び出しは、Windows.Forms フォーム デザイナで必要です。
25 InitializeComponent();
26
27 // TODO: InitializeComponent 呼び出しの後に初期化処理を追加します。
28
29 }
30
31 /// <summary>
32 /// 使用されているリソースに後処理を実行します。
33 /// </summary>
34 protected override void Dispose( bool disposing )
35 {
36 if( disposing )
37 {
38 if(components != null)
39 {
40 components.Dispose();
41 }
42 }
43 base.Dispose( disposing );
44 }
45
46 #region コンポーネント デザイナで生成されたコード
47 /// <summary>
48 /// デザイナ サポートに必要なメソッドです。このメソッドの内容を
49 /// コード エディタで変更しないでください。
50 /// </summary>
51 private void InitializeComponent()
52 {
53 this.imageButton1 = new nft.controls.ImageButton();
54 this.imageButton2 = new nft.controls.ImageButton();
55 this.SuspendLayout();
56 //
57 // imageButton1
58 //
59 this.imageButton1.DisposeImageList = false;
60 this.imageButton1.IdxDisabledImage = 0;
61 this.imageButton1.IdxHoverImage = 0;
62 this.imageButton1.IdxNormalImage = 0;
63 this.imageButton1.IdxPressedImage = 0;
64 this.imageButton1.ImageList = null;
65 this.imageButton1.Location = new System.Drawing.Point(24, 152);
66 this.imageButton1.Name = "imageButton1";
67 this.imageButton1.Size = new System.Drawing.Size(16, 16);
68 this.imageButton1.TabIndex = 0;
69 //
70 // imageButton2
71 //
72 this.imageButton2.DisposeImageList = false;
73 this.imageButton2.IdxDisabledImage = 0;
74 this.imageButton2.IdxHoverImage = 0;
75 this.imageButton2.IdxNormalImage = 0;
76 this.imageButton2.IdxPressedImage = 0;
77 this.imageButton2.ImageList = null;
78 this.imageButton2.Location = new System.Drawing.Point(40, 168);
79 this.imageButton2.Name = "imageButton2";
80 this.imageButton2.Size = new System.Drawing.Size(16, 16);
81 this.imageButton2.TabIndex = 0;
82 //
83 // SatelliteControl
84 //
85 this.Controls.Add(this.imageButton1);
86 this.Controls.Add(this.imageButton2);
87 this.Name = "SatelliteControl";
88 this.Size = new System.Drawing.Size(200, 200);
89 this.ResumeLayout(false);
90
91 }
92 #endregion
93 }
94 }

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