Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs')
-rw-r--r--WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs b/WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs
new file mode 100644
index 0000000..41bbb99
--- /dev/null
+++ b/WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Windows.Forms;
+
+namespace MSDNForums
+{
+ public class LayoutItem
+ {
+ //Used to send the Picture Box image and the text tag to Form1
+ public PictureBox ItemPcitureBox
+ {
+ get;
+ set;
+ }
+ //Used to send the path of the wav file to the MainForm
+ public String SoundPath
+ {
+ get;
+ set;
+ }
+ //Used to send the Panel properties to the Form1
+ public Panel pnlcolor
+ {
+ get;
+ set;
+ }
+ }
+}