|
From: <br...@us...> - 2008-11-04 17:14:37
|
Revision: 428
http://acmcontester.svn.sourceforge.net/acmcontester/?rev=428&view=rev
Author: brus07
Date: 2008-11-04 17:14:31 +0000 (Tue, 04 Nov 2008)
Log Message:
-----------
Added user control to TestRunnerPlugin. (now is empty usercontrol)
Modified Paths:
--------------
ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.cs
ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.csproj
Added Paths:
-----------
ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.Designer.cs
ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.cs
Modified: ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.cs
===================================================================
--- ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.cs 2008-11-04 10:15:26 UTC (rev 427)
+++ ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.cs 2008-11-04 17:14:31 UTC (rev 428)
@@ -11,6 +11,8 @@
public TestRunnerPlugin()
{
runner.onDataArrived += new WorkRunner.DataArrivedDelegate(runner_onDataArrived);
+
+ base.Control = new TestRunnerUserControl();
}
private bool runner_onDataArrived(SystemMessage message)
Modified: ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.csproj
===================================================================
--- ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.csproj 2008-11-04 10:15:26 UTC (rev 427)
+++ ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerPlugin.csproj 2008-11-04 17:14:31 UTC (rev 428)
@@ -30,11 +30,19 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
+ <Reference Include="System.Drawing" />
+ <Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestRunnerPlugin.cs" />
+ <Compile Include="TestRunnerUserControl.cs">
+ <SubType>UserControl</SubType>
+ </Compile>
+ <Compile Include="TestRunnerUserControl.Designer.cs">
+ <DependentUpon>TestRunnerUserControl.cs</DependentUpon>
+ </Compile>
<Compile Include="WorkRunner.cs" />
</ItemGroup>
<ItemGroup>
Added: ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.Designer.cs
===================================================================
--- ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.Designer.cs (rev 0)
+++ ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.Designer.cs 2008-11-04 17:14:31 UTC (rev 428)
@@ -0,0 +1,37 @@
+namespace AcmContester.Plugins.TesterPlugins.TestRunnerPlugin
+{
+ partial class TestRunnerUserControl
+ {
+ /// <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 Component 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()
+ {
+ components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ }
+
+ #endregion
+ }
+}
Added: ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.cs
===================================================================
--- ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.cs (rev 0)
+++ ACMServer/trunk/ACMServer/Plugins/TesterPlugins/TestRunnerPlugin/TestRunnerUserControl.cs 2008-11-04 17:14:31 UTC (rev 428)
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Text;
+using System.Windows.Forms;
+
+namespace AcmContester.Plugins.TesterPlugins.TestRunnerPlugin
+{
+ public partial class TestRunnerUserControl : UserControl
+ {
+ public TestRunnerUserControl()
+ {
+ InitializeComponent();
+ }
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|