form1.cs

来自「编辑点属性,地理信息系统开发学习使用, 学习」· CS 代码 · 共 61 行

CS
61
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace photo
{
    public partial class Form1 : Form
    {
        float lWidth, lHeight;

        public PictureBox PictureBox
        { get { return this.pictureBox1; } }
            
        public Form1()
        {
            InitializeComponent();
        }

        private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OpenFileDialog pofg = new OpenFileDialog();

            pofg.Filter = "Bitmap  files(*.bmp)|*.bmp";
            if (pofg.ShowDialog() == DialogResult.OK)
            { this.pictureBox1.Image = (Bitmap)Bitmap.FromFile(pofg.FileName, false); }


        }

        private void 显示灰度直方图ToolStripMenuItem_Click(object sender, EventArgs e)
        {
           
            graphic graphic1 = new graphic(this);
            graphic1.Show();
           


        }

        private void 图像旋转ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            rotate rotate1 = new rotate(this);
            rotate1.Show();
        }

       

        private void 傅立叶变换ToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            change change1 = new change(this);
            change1.Show();

        }

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?