[Quantproject-developers] QuantProject/b91_QuantProject AccountViewer.cs,NONE,1.1 b91_QuantProject.c
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-02-04 00:01:59
|
Update of /cvsroot/quantproject/QuantProject/b91_QuantProject In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4270/b91_QuantProject Modified Files: b91_QuantProject.csproj Added Files: AccountViewer.cs Log Message: Added AccountViewer to the project (work is still in progress) Index: b91_QuantProject.csproj =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b91_QuantProject/b91_QuantProject.csproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** b91_QuantProject.csproj 20 Jan 2005 01:11:33 -0000 1.6 --- b91_QuantProject.csproj 4 Feb 2005 00:01:47 -0000 1.7 *************** *** 98,101 **** --- 98,111 ---- <Include> <File + RelPath = "AccountViewer.cs" + SubType = "Form" + BuildAction = "Compile" + /> + <File + RelPath = "AccountViewer.resx" + DependentUpon = "AccountViewer.cs" + BuildAction = "EmbeddedResource" + /> + <File RelPath = "app.config" BuildAction = "None" --- NEW FILE: AccountViewer.cs --- using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace QuantProject.Principale { /// <summary> /// AccountViewer. /// </summary> public class AccountViewer : System.Windows.Forms.Form { private System.Windows.Forms.Button buttonAddAccounts; private System.Windows.Forms.DataGrid dataGridAccounts; private System.ComponentModel.Container components = null; public AccountViewer() { // InitializeComponent(); // // TODO: // } /// <summary> /// Clean up /// </summary> protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code //do not modify with code editor private void InitializeComponent() { this.buttonAddAccounts = new System.Windows.Forms.Button(); this.dataGridAccounts = new System.Windows.Forms.DataGrid(); ((System.ComponentModel.ISupportInitialize)(this.dataGridAccounts)).BeginInit(); this.SuspendLayout(); // // buttonAddAccounts // this.buttonAddAccounts.Location = new System.Drawing.Point(320, 112); this.buttonAddAccounts.Name = "buttonAddAccounts"; this.buttonAddAccounts.Size = new System.Drawing.Size(120, 32); this.buttonAddAccounts.TabIndex = 1; this.buttonAddAccounts.Text = "Add Accounts ..."; this.buttonAddAccounts.Click += new System.EventHandler(this.buttonAddAccounts_Click); // // dataGridAccounts // this.dataGridAccounts.DataMember = ""; this.dataGridAccounts.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGridAccounts.Location = new System.Drawing.Point(8, 0); this.dataGridAccounts.Name = "dataGridAccounts"; this.dataGridAccounts.Size = new System.Drawing.Size(296, 264); this.dataGridAccounts.TabIndex = 2; // // AccountViewer // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(456, 266); this.Controls.AddRange(new System.Windows.Forms.Control[] { this.dataGridAccounts, this.buttonAddAccounts}); this.Name = "AccountViewer"; this.Text = "AccountViewer"; ((System.ComponentModel.ISupportInitialize)(this.dataGridAccounts)).EndInit(); this.ResumeLayout(false); } #endregion private void buttonAddAccounts_Click(object sender, System.EventArgs e) { //add code her for loading accounts } } } |