From: <br...@us...> - 2009-09-01 21:21:43
|
Revision: 559 http://acmcontester.svn.sourceforge.net/acmcontester/?rev=559&view=rev Author: brus07 Date: 2009-09-01 21:21:33 +0000 (Tue, 01 Sep 2009) Log Message: ----------- Added new empty main form. Modified Paths: -------------- nera/projects/nera.tester.gui.sample/trunk/Build.dependencies nera/projects/nera.tester.gui.sample/trunk/Component Sources.csproj Added Paths: ----------- nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.Designer.cs nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.cs Property Changed: ---------------- nera/projects/nera.tester.gui.sample/trunk/ Property changes on: nera/projects/nera.tester.gui.sample/trunk ___________________________________________________________________ Modified: svn:ignore - *.suo + *.suo build obj Modified: nera/projects/nera.tester.gui.sample/trunk/Build.dependencies =================================================================== --- nera/projects/nera.tester.gui.sample/trunk/Build.dependencies 2009-09-01 19:26:14 UTC (rev 558) +++ nera/projects/nera.tester.gui.sample/trunk/Build.dependencies 2009-09-01 21:21:33 UTC (rev 559) @@ -19,6 +19,8 @@ <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Xml" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> </ItemGroup> <Choose> Modified: nera/projects/nera.tester.gui.sample/trunk/Component Sources.csproj =================================================================== --- nera/projects/nera.tester.gui.sample/trunk/Component Sources.csproj 2009-09-01 19:26:14 UTC (rev 558) +++ nera/projects/nera.tester.gui.sample/trunk/Component Sources.csproj 2009-09-01 21:21:33 UTC (rev 559) @@ -3,7 +3,7 @@ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <SchemaVersion>2.0</SchemaVersion> - <ProjectGuid>{EF5E06AD-7D8A-476c-AFDB-9BACFB144615}</ProjectGuid> + <ProjectGuid>{EF5E06AD-7D8A-476C-AFDB-9BACFB144615}</ProjectGuid> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -13,7 +13,5 @@ <!-- Added for making the difference in Build.dependencies file between sources & tests projects --> <ProjectKind>ComponentSources</ProjectKind> </PropertyGroup> - <Import Project="Reference.targets" /> - </Project> \ No newline at end of file Added: nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.Designer.cs =================================================================== --- nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.Designer.cs (rev 0) +++ nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.Designer.cs 2009-09-01 21:21:33 UTC (rev 559) @@ -0,0 +1,38 @@ +namespace Nera.Tester.Gui.Sample +{ + partial class MainForm + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Text = "MainForm"; + } + + #endregion + } +} \ No newline at end of file Added: nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.cs =================================================================== --- nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.cs (rev 0) +++ nera/projects/nera.tester.gui.sample/trunk/src/csharp/main/Nera/Tester/Gui/Sample/MainForm.cs 2009-09-01 21:21:33 UTC (rev 559) @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace Nera.Tester.Gui.Sample +{ + public partial class MainForm : Form + { + public MainForm() + { + InitializeComponent(); + } + } +} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |