コード例 #1
0
ファイル: Form1.cs プロジェクト: dmswart/Personal-Projects
 public Form1()
 {
     m_engine = null;
     InitializeComponent();
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: dmswart/Personal-Projects
 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);
     }
 }