Beispiel #1
0
 public Form1()
 {
     InitializeComponent();
     lash      = new ClientLash();
     fakelash  = new FakeLash();
     pattern   = new LashPattern(pictureBox1, fakelash, lash);
     eyeShapes = Enum.GetNames(typeof(ClientLash.EyeShape));
     curls     = Enum.GetNames(typeof(FakeLash.LashCurve));
     for (int i = 0; i < 4; i++)
     {
         eyeShape.Items.Add(eyeShapes[i]);
     }
     for (int i = 0; i < 3; i++)
     {
         lashCurve.Items.Add(curls[i]);
     }
 }
Beispiel #2
0
 public LashPattern(PictureBox picture, FakeLash fake, ClientLash client)
 {
     this._lashPatterns = picture;
     this.fake          = fake;
     this.client        = client;
 }