Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/WindowsFormsApplication2/WindowsFormsApplication2/LayoutItem.cs
blob: 41bbb99c9567f29ff5c2f7bec7ee24bad350c783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
        }
    }
}