[Quantproject-developers] QuantProject/b5_Presentation/Reporting/WindowsForm ReportGridTabPage.cs,NO
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2004-08-08 13:41:07
|
Update of /cvsroot/quantproject/QuantProject/b5_Presentation/Reporting/WindowsForm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21845/b5_Presentation/Reporting/WindowsForm Added Files: ReportGridTabPage.cs Log Message: Report TabPage, to contain a ReportGrid --- NEW FILE: ReportGridTabPage.cs --- using System; using System.Windows.Forms; using QuantProject.Business.Financial.Accounting.Reporting; namespace QuantProject.Presentation.Reporting.WindowsForm { /// <summary> /// Summary description for RoundTradesTabPage. /// </summary> public class ReportGridTabPage : TabPage { public ReportGridTabPage( string title , ReportTable reportTable ) { this.Text = title; ReportGrid reportGrid = new ReportGrid( reportTable ); reportGrid.Dock = DockStyle.Fill; this.Controls.Add( reportGrid ); } } } |