• R/O
  • SSH
  • HTTPS

ipared: Commit


Commit MetaInfo

Revisão3 (tree)
Hora2010-11-04 21:54:57
Autorshirayanagi

Mensagem de Log

フォルダ一覧を表示

Mudança Sumário

Diff

--- trunk/proj/ipared/Form1.Designer.cs (revision 2)
+++ trunk/proj/ipared/Form1.Designer.cs (revision 3)
@@ -1,6 +1,6 @@
11 namespace ipared
22 {
3- partial class Form1
3+ partial class MainForm
44 {
55 /// <summary>
66 /// 必要なデザイナ変数です。
@@ -29,11 +29,60 @@
2929 private void InitializeComponent()
3030 {
3131 this.components = new System.ComponentModel.Container();
32+ this.splitContainer1 = new System.Windows.Forms.SplitContainer();
33+ this.treeView1 = new crisp.CSFolderTreeView();
34+ this.splitContainer1.Panel1.SuspendLayout();
35+ this.splitContainer1.SuspendLayout();
36+ this.SuspendLayout();
37+ //
38+ // splitContainer1
39+ //
40+ this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
41+ this.splitContainer1.Location = new System.Drawing.Point(0, 0);
42+ this.splitContainer1.Name = "splitContainer1";
43+ //
44+ // splitContainer1.Panel1
45+ //
46+ this.splitContainer1.Panel1.Controls.Add(this.treeView1);
47+ //
48+ // splitContainer1.Panel2
49+ //
50+ this.splitContainer1.Panel2.AutoScroll = true;
51+ this.splitContainer1.Size = new System.Drawing.Size(597, 507);
52+ this.splitContainer1.SplitterDistance = 234;
53+ this.splitContainer1.TabIndex = 0;
54+ //
55+ // treeView1
56+ //
57+ this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
58+ this.treeView1.ImageIndex = 0;
59+ this.treeView1.Location = new System.Drawing.Point(0, 0);
60+ this.treeView1.Name = "treeView1";
61+ this.treeView1.SelectedImageIndex = 0;
62+ this.treeView1.ShowHidden = true;
63+ this.treeView1.Size = new System.Drawing.Size(234, 507);
64+ this.treeView1.Sorted = true;
65+ this.treeView1.TabIndex = 0;
66+ //
67+ // MainForm
68+ //
69+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
3270 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
33- this.Text = "Form1";
71+ this.ClientSize = new System.Drawing.Size(597, 507);
72+ this.Controls.Add(this.splitContainer1);
73+ this.Name = "MainForm";
74+ this.Text = "ipared";
75+ this.splitContainer1.Panel1.ResumeLayout(false);
76+ this.splitContainer1.ResumeLayout(false);
77+ this.ResumeLayout(false);
78+
3479 }
3580
3681 #endregion
82+
83+ private System.Windows.Forms.SplitContainer splitContainer1;
84+ private crisp.CSFolderTreeView treeView1;
85+
3786 }
3887 }
3988
--- trunk/proj/ipared/Form1.cs (revision 2)
+++ trunk/proj/ipared/Form1.cs (revision 3)
@@ -11,9 +11,9 @@
1111 namespace ipared
1212 {
1313 using Form = CSForm; // フォームデザイナ対応
14- public partial class Form1 : Form
14+ public partial class MainForm : Form
1515 {
16- public Form1()
16+ public MainForm()
1717 {
1818 InitializeComponent();
1919 }
--- trunk/proj/ipared/Main.cs (revision 2)
+++ trunk/proj/ipared/Main.cs (revision 3)
@@ -18,11 +18,11 @@
1818
1919 namespace ipared
2020 {
21- public class Core : CSCore<Form1>
21+ public class Core : CSCore<MainForm>
2222 {
2323 public override void Initialize()
2424 {
25- m_Form = new Form1();
25+ m_Form = new MainForm();
2626
2727 //m_Form.OnPaintHandler = OnPaint;
2828 m_Form.Show();
--- trunk/proj/ipared/Program.cs (revision 2)
+++ trunk/proj/ipared/Program.cs (revision 3)
@@ -14,6 +14,7 @@
1414 [STAThread]
1515 static void Main()
1616 {
17+ Application.EnableVisualStyles();
1718 CSApplication app = new CSApplication(new Core());
1819
1920 app.Initialize();
--- trunk/proj/ipared/Properties/AssemblyInfo.cs (revision 2)
+++ trunk/proj/ipared/Properties/AssemblyInfo.cs (revision 3)
@@ -10,7 +10,7 @@
1010 [assembly: AssemblyConfiguration("")]
1111 [assembly: AssemblyCompany("")]
1212 [assembly: AssemblyProduct("ipared")]
13-[assembly: AssemblyCopyright("Copyright © 2010")]
13+[assembly: AssemblyCopyright("Copyright © takazumi.shirayanagi 2010")]
1414 [assembly: AssemblyTrademark("")]
1515 [assembly: AssemblyCulture("")]
1616
Show on old repository browser