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

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

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