• C#可视化程序设计第四章


    1.windows应用程序

    1.1创建Windows应用程序

    打开visual studio2017 在菜单栏选择“文件”→“新建”→“项目”

    出现如下图后,点开visual C#选择Windows桌面,找到Windows窗体应用(NET.Framework)

    输入项目名,保存地址后确认。

    打开后;

     

     2.消息框,改变窗体背景颜色,用代码给窗体创名字

     public Form1()
            {
                InitializeComponent();
            }
            //进行操作下一步的代码
            private void button1_Click(object sender, EventArgs e)
            {
             //消息框:
     
    //MessageBox.Show("点","点他");//内容,标题 //MessageBox.Show("点", "点他",MessageBoxButtons.RetryCancel);//重新 MessageBox.Show("","点他",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Asterisk); //重新,提示图标 DialogResult result;//消息框返回值 result = MessageBox.Show("", "点他", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Asterisk); if (result==DialogResult.Yes) { MessageBox.Show("你选了'是'"); } else { MessageBox.Show("你没选'是'"); } } private void Form1_Load(object sender, EventArgs e) { Text = "花里胡哨";//可以改变窗体的标题 MessageBox.Show("box 展示"); } private void Form1_Click(object sender, EventArgs e) {
            //换背景颜色
    if (BackColor == Color.Red) { BackColor = Color.Yellow; } else if (BackColor == Color.Yellow) { BackColor = Color.Green; } else { BackColor = Color.Red; } Application.Exit();//结束程序的进程 } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { DialogResult result = MessageBox.Show("确定关闭吗","提示",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Information); if (result == DialogResult.Yes)//选择的结果(枚举) { MessageBox.Show("真的关了哈", "提示"); } else { e.Cancel = true;//选择为取消 } }
  • 相关阅读:
    CentOS7 安装 Mysql5.6.40
    CentOS7 安装 Python3.6.5
    CentOS7 添加新用户并授权 root 权限
    02 常用数据结构
    01 常见算法
    初识 Docker
    glob & fnmatch -- 使用Unix style通配符
    Pillow6 起步
    leetcode70. 爬楼梯 🌟
    leetcode69. x 的平方根 🌟
  • 原文地址:https://www.cnblogs.com/H-Yan/p/13026157.html
Copyright © 2020-2023  润新知