Ejemplo n.º 1
0
        private void GrayButton_Click(object sender, EventArgs e) // Display all of stored paints classified as gray
        {
            // 7 GRAY //
            PaintViewForm paintForm = new PaintViewForm(7);

            paintForm.ShowDialog();
        }
Ejemplo n.º 2
0
        private void PinkButton_Click(object sender, EventArgs e) // Display all of stored paints classified as pink
        {
            // 5 PINK //
            PaintViewForm paintForm = new PaintViewForm(5);

            paintForm.ShowDialog();
        }
Ejemplo n.º 3
0
        private void BlackButton_Click(object sender, EventArgs e) // Display all of stored paints classified as black
        {
            // 6 BLACK //
            PaintViewForm paintForm = new PaintViewForm(6);

            paintForm.ShowDialog();
        }
Ejemplo n.º 4
0
        private void GreenButton_Click(object sender, EventArgs e) // Display all of stored paints classified as green
        {
            // 3 GREEN //
            PaintViewForm paintForm = new PaintViewForm(3);

            paintForm.ShowDialog();
        }
Ejemplo n.º 5
0
        private void YellowButton_Click(object sender, EventArgs e) // Display all of stored paints classified as yellow
        {
            // 4 YELLOW //
            PaintViewForm paintForm = new PaintViewForm(4);

            paintForm.ShowDialog();
        }
Ejemplo n.º 6
0
        private void RedButton_Click(object sender, EventArgs e) // Display all of stored paints classified as red
        {
            // 1 RED //
            PaintViewForm paintForm = new PaintViewForm(1);

            paintForm.ShowDialog();
        }
Ejemplo n.º 7
0
        private void BlueButton_Click(object sender, EventArgs e) // Display all of stored paints classified as blue
        {
            // 2 BLUE //
            PaintViewForm paintForm = new PaintViewForm(2);

            paintForm.ShowDialog();
        }
Ejemplo n.º 8
0
        private void SpecialButton_Click(object sender, EventArgs e) // Display all of stored paints classified as special
        {
            // 12 SPECIAL //
            PaintViewForm paintForm = new PaintViewForm(12);

            paintForm.ShowDialog();
        }
Ejemplo n.º 9
0
        private void WhiteButton_Click(object sender, EventArgs e) // Display all of stored paints classified as white
        {
            // 11 WHITE //
            PaintViewForm paintForm = new PaintViewForm(11);

            paintForm.ShowDialog();
        }
Ejemplo n.º 10
0
        private void PurpleButton_Click(object sender, EventArgs e) // Display all of stored paints classified as purple
        {
            // 10 PURPLE //
            PaintViewForm paintForm = new PaintViewForm(10);

            paintForm.ShowDialog();
        }
Ejemplo n.º 11
0
        private void OrangeButton_Click(object sender, EventArgs e) // Display all of stored paints classified as orange
        {
            // 9 ORANGE //
            PaintViewForm paintForm = new PaintViewForm(9);

            paintForm.ShowDialog();
        }
Ejemplo n.º 12
0
        private void SilverButton_Click(object sender, EventArgs e) // Display all of stored paints classified as silver
        {
            // 8 SILVER //
            PaintViewForm paintForm = new PaintViewForm(8);

            paintForm.ShowDialog();
        }