Esempio n. 1
0
        private void RightIncClick(object sender, EventArgs e)
        {
            if (_modified == null)
            {
                return;
            }
            var imageWindow = new CutImage(_modified, "Modified image", this);

            imageWindow.Show();
        }
Esempio n. 2
0
        private void LeftIncClick(object sender, EventArgs e)
        {
            if (_original == null)
            {
                return;
            }
            var imageWindow = new CutImage(_original, "Original image", this);

            imageWindow.Show();
        }
Esempio n. 3
0
 private void LeftIncClick(object sender, EventArgs e)
 {
     if (_original == null) return;
     var imageWindow = new CutImage(_original, "Original image", this);
     imageWindow.Show();
 }
Esempio n. 4
0
 private void RightIncClick(object sender, EventArgs e)
 {
     if (_modified == null) return;
     var imageWindow = new CutImage(_modified, "Modified image", this);
     imageWindow.Show();
 }