⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 编辑点属性,地理信息系统开发学习使用, 学习
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -