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