public Form1() { m_engine = null; InitializeComponent(); }
private void LoadInitial() { if (textBoxInitial.Text == String.Empty) { m_engine = new Stippler(Decimal.ToInt32(numericUpDownNumPoints.Value), textBoxSourceImage.Text); } else { m_engine = new Stippler(textBoxInitial.Text, textBoxSourceImage.Text); } }