Author: gert
Date: 2008-02-05 16:36:21 -0500 (Tue, 05 Feb 2008)
New Revision: 94958

Added:
   trunk/gert/interactive/bug358442/
   trunk/gert/interactive/bug358442/MainForm.cs
   trunk/gert/interactive/bug358442/default.build
Log:
Added test for bug #358442.


Added: trunk/gert/interactive/bug358442/MainForm.cs
===================================================================
--- trunk/gert/interactive/bug358442/MainForm.cs        2008-02-05 21:27:04 UTC 
(rev 94957)
+++ trunk/gert/interactive/bug358442/MainForm.cs        2008-02-05 21:36:21 UTC 
(rev 94958)
@@ -0,0 +1,83 @@
+using System;
+using System.Drawing;
+using System.Globalization;
+using System.Windows.Forms;
+
+public class MainForm : Form
+{
+       public MainForm ()
+       {
+               // 
+               // MainForm
+               // 
+               ClientSize = new Size (300, 200);
+               IsMdiContainer = true;
+               Location = new Point (250, 100);
+               StartPosition = FormStartPosition.Manual;
+               Text = "bug #bug358442";
+               Load += new EventHandler (MainForm_Load);
+       }
+
+       [STAThread]
+       static void Main ()
+       {
+               Application.Run (new MainForm ());
+       }
+
+       void MainForm_Load (object sender, EventArgs e)
+       {
+               InstructionsForm instructionsForm = new InstructionsForm ();
+               instructionsForm.Show ();
+
+               Form child = new Form ();
+               child.ClientSize = new Size (209, 100);
+               child.Location = new Point (40, 35);
+               child.MdiParent = this;
+               child.StartPosition = FormStartPosition.Manual;
+               child.Text = "Child";
+               child.Show ();
+       }
+}
+
+public class InstructionsForm : Form
+{
+       public InstructionsForm ()
+       {
+               // 
+               // _tabControl
+               // 
+               _tabControl = new TabControl ();
+               _tabControl.Dock = DockStyle.Fill;
+               Controls.Add (_tabControl);
+               // 
+               // _bugDescriptionText1
+               // 
+               _bugDescriptionText1 = new TextBox ();
+               _bugDescriptionText1.Dock = DockStyle.Fill;
+               _bugDescriptionText1.Multiline = true;
+               _bugDescriptionText1.Text = string.Format 
(CultureInfo.InvariantCulture,
+                       "Steps to execute:{0}{0}" +
+                       "1. Double-click the control box of the MDI 
child.{0}{0}" +
+                       "Expected result:{0}{0}" +
+                       "1. The MDI child is closed.",
+                       Environment.NewLine);
+               // 
+               // _tabPage1
+               // 
+               _tabPage1 = new TabPage ();
+               _tabPage1.Text = "#1";
+               _tabPage1.Controls.Add (_bugDescriptionText1);
+               _tabControl.Controls.Add (_tabPage1);
+               // 
+               // InstructionsForm
+               // 
+               ClientSize = new Size (300, 140);
+               Location = new Point (600, 100);
+               StartPosition = FormStartPosition.Manual;
+               Text = "Instructions - bug #358442";
+       }
+
+       private TextBox _bugDescriptionText1;
+       private TabControl _tabControl;
+       private TabPage _tabPage1;
+}


Property changes on: trunk/gert/interactive/bug358442/MainForm.cs
___________________________________________________________________
Name: svn:eol-style
   + native

Added: trunk/gert/interactive/bug358442/default.build
===================================================================
--- trunk/gert/interactive/bug358442/default.build      2008-02-05 21:27:04 UTC 
(rev 94957)
+++ trunk/gert/interactive/bug358442/default.build      2008-02-05 21:36:21 UTC 
(rev 94958)
@@ -0,0 +1,31 @@
+<project name="bug358442" default="rebuild">
+       <include buildfile="../../build/common.build" />
+       
+       <property name="frameworks" value="mono-1.0,mono-2.0,net-1.1,net-2.0" />
+
+       <target name="clean">
+               <delete>
+                       <fileset>
+                               <include name="out" />
+                               <include name="test.exe" />
+                       </fileset>
+               </delete>
+       </target>
+
+       <target name="compile" depends="init">
+               <csc target="winexe" define="${csc.defines}" output="test.exe" 
warnaserror="true" warninglevel="4">
+                       <sources>
+                               <include name="MainForm.cs" />
+                       </sources>
+                       <references>
+                               <include name="System.Drawing.dll" />
+                               <include name="System.Windows.Forms.dll" />
+                       </references>
+               </csc>
+       </target>
+
+       <target name="run-test" depends="compile">
+               <exec program="test.exe" managed="true" output="out" />
+               <fail if="${file::exists('out')}" />
+       </target>
+</project>


Property changes on: trunk/gert/interactive/bug358442/default.build
___________________________________________________________________
Name: svn:eol-style
   + native

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to