Sha256: 3a7551fe7c7fa4215862e9a3b5b1eb1bbf6b48ade29a56b82e65e6eaccde7ab9

Contents?: true

Size: 813 Bytes

Versions: 44

Compression:

Stored size: 813 Bytes

Contents

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 WindowsForms
{
    public partial class PersonForm : Form
    {
        private DataEntryForm dataEntryForm;

        public PersonForm(DataEntryForm dataEntryForm)
        {
            InitializeComponent();
            this.dataEntryForm = dataEntryForm;
        }

        private void cancelButton_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void okButton_Click(object sender, EventArgs e)
        {
            dataEntryForm.addPerson(personName.Text, personDateOfBirth.Text);
            this.Close();
        }

    }
}

Version data entries

44 entries across 44 versions & 2 rubygems

Version Path
rautomation-0.6.2 ext/WindowsForms/src/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.6.1 ext/WindowsForms/src/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.6.0 ext/WindowsForms/src/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.5.1 ext/WindowsForms/src/WindowsForms/WindowsForms/PersonForm.cs