git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@93 9fe90eed-be63-e94b-8204-d34ff4c2ff93
This commit is contained in:
Matthias
2009-01-07 21:45:48 +00:00
parent 130161e87a
commit 7209728966
7 changed files with 292 additions and 6 deletions
@@ -15,7 +15,7 @@ namespace QUA_2475_designtest
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
Application.Run(new mainWindow());
}
}
}
@@ -48,16 +48,16 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<Compile Include="mainWindow.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="mainWindow.Designer.cs">
<DependentUpon>mainWindow.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="mainWindow.resx">
<DependentUpon>mainWindow.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
@@ -0,0 +1,140 @@
namespace QUA_2475_designtest
{
partial class mainWindow
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.exit = new System.Windows.Forms.Button();
this.T_TesterOutput = new System.Windows.Forms.TextBox();
this.G_Tester = new System.Windows.Forms.GroupBox();
this.T_TesterInput = new System.Windows.Forms.TextBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tab_control = new System.Windows.Forms.TabPage();
this.tab_config = new System.Windows.Forms.TabPage();
this.G_Tester.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tab_control.SuspendLayout();
this.SuspendLayout();
//
// exit
//
this.exit.Location = new System.Drawing.Point(841, 732);
this.exit.Name = "exit";
this.exit.Size = new System.Drawing.Size(75, 23);
this.exit.TabIndex = 0;
this.exit.Text = "Exit";
this.exit.UseVisualStyleBackColor = true;
this.exit.Click += new System.EventHandler(this.exit_Click);
//
// T_TesterOutput
//
this.T_TesterOutput.BackColor = System.Drawing.Color.White;
this.T_TesterOutput.Location = new System.Drawing.Point(6, 19);
this.T_TesterOutput.Multiline = true;
this.T_TesterOutput.Name = "T_TesterOutput";
this.T_TesterOutput.ReadOnly = true;
this.T_TesterOutput.Size = new System.Drawing.Size(543, 461);
this.T_TesterOutput.TabIndex = 1;
//
// G_Tester
//
this.G_Tester.Controls.Add(this.T_TesterInput);
this.G_Tester.Controls.Add(this.T_TesterOutput);
this.G_Tester.Location = new System.Drawing.Point(335, 3);
this.G_Tester.Name = "G_Tester";
this.G_Tester.Size = new System.Drawing.Size(555, 597);
this.G_Tester.TabIndex = 2;
this.G_Tester.TabStop = false;
this.G_Tester.Text = "Tester Communication";
//
// T_TesterInput
//
this.T_TesterInput.Location = new System.Drawing.Point(7, 508);
this.T_TesterInput.Name = "T_TesterInput";
this.T_TesterInput.Size = new System.Drawing.Size(542, 20);
this.T_TesterInput.TabIndex = 2;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tab_control);
this.tabControl1.Controls.Add(this.tab_config);
this.tabControl1.Location = new System.Drawing.Point(13, 3);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(903, 629);
this.tabControl1.TabIndex = 3;
//
// tab_control
//
this.tab_control.BackColor = System.Drawing.Color.Gainsboro;
this.tab_control.Controls.Add(this.G_Tester);
this.tab_control.Location = new System.Drawing.Point(4, 22);
this.tab_control.Name = "tab_control";
this.tab_control.Padding = new System.Windows.Forms.Padding(3);
this.tab_control.Size = new System.Drawing.Size(895, 603);
this.tab_control.TabIndex = 0;
this.tab_control.Text = "Test Control";
//
// tab_config
//
this.tab_config.BackColor = System.Drawing.Color.Gainsboro;
this.tab_config.Location = new System.Drawing.Point(4, 22);
this.tab_config.Name = "tab_config";
this.tab_config.Padding = new System.Windows.Forms.Padding(3);
this.tab_config.Size = new System.Drawing.Size(895, 603);
this.tab_config.TabIndex = 1;
this.tab_config.Text = "Test Configuration";
//
// mainWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(928, 767);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.exit);
this.Name = "mainWindow";
this.Text = "Design test application for QUA_2475";
this.G_Tester.ResumeLayout(false);
this.G_Tester.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tab_control.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button exit;
private System.Windows.Forms.TextBox T_TesterOutput;
private System.Windows.Forms.GroupBox G_Tester;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tab_control;
private System.Windows.Forms.TabPage tab_config;
private System.Windows.Forms.TextBox T_TesterInput;
}
}
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace QUA_2475_designtest
{
public partial class mainWindow : Form
{
public mainWindow()
{
InitializeComponent();
}
private void exit_Click(object sender, EventArgs e)
{
/* Quit Window Session */
}
}
}
@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
@@ -6,3 +6,5 @@ C:\Dokumente und Einstellungen\m\Eigene Dateien\Visual Studio 2008\Projects\QUA_
C:\Dokumente und Einstellungen\m\Eigene Dateien\Visual Studio 2008\Projects\QUA_2475_designtest\QUA_2475_designtest\obj\Debug\QUA_2475_designtest.csproj.GenerateResource.Cache
C:\Dokumente und Einstellungen\m\Eigene Dateien\Visual Studio 2008\Projects\QUA_2475_designtest\QUA_2475_designtest\obj\Debug\QUA_2475_designtest.exe
C:\Dokumente und Einstellungen\m\Eigene Dateien\Visual Studio 2008\Projects\QUA_2475_designtest\QUA_2475_designtest\obj\Debug\QUA_2475_designtest.pdb
C:\Dokumente und Einstellungen\m\Eigene Dateien\Diplomarbeit\Tester\SW\designtest_control\QUA_2475_designtest\obj\Debug\QUA_2475_designtest.exe
C:\Dokumente und Einstellungen\m\Eigene Dateien\Diplomarbeit\Tester\SW\designtest_control\QUA_2475_designtest\obj\Debug\QUA_2475_designtest.pdb