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
mohawk-1.0 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-1.1.0 ext/WindowsForms/WindowsForms/PersonForm.cs
rautomation-1.0.0 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.4.4 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.4.3 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.17.0 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.4.2 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.16.0 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.4.1 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.15.0 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.4 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.3 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.2.1 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.2 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.14.1 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.1.4 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.14.0 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.1.0 features/support/app/WindowsForms/WindowsForms/PersonForm.cs
rautomation-0.13.0 ext/WindowsForms/WindowsForms/PersonForm.cs
mohawk-0.0.9 features/support/app/WindowsForms/WindowsForms/PersonForm.cs