C#入门1.6——第一个桌面应用程序

先学习一句话

MessageBox.Show("消息内容","消息标题");

用于弹出一个消息框


本节介绍建立桌面应用程序用户界面的基础知识,说明如何启动和运行Windows应用程序。

步骤:

1.创建WPF Application的新项目,也可以使用WindowsFroms来创建桌面应用程序。

2.布局按钮。

3.添加代码。


新建项目→WPF应用程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApplication1
{
    /// 
    /// MainWindow.xaml 的交互逻辑
    /// 
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void button_Click(object sender, RoutedEventArgs e)//在左边工具箱添加按钮之后就会出现按钮这个函数。
        {
            MessageBox.Show("这是一个消息弹窗","这是一个消息标题");//然后在按钮里面敲代码。
        }
    }
}


你可能感兴趣的:(C#)