WPF入门1 -- Hello WPF

        一直很想学习C#,终于机会来了。现在要开始学写界面,所以现在开始一边学习一边写博客。

        首先学习了最基础的Hello WPF,Titie属性修改成WPF First Application,然后拖拽一个button,button的Content改成Hello WPF,双击button跳转到后端代码,加上响应的方法:Messagebox.show输出。


        代码如下:


    
        

    

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 WPF1
{
    /// 
    /// Interaction logic for MainWindow.xaml
    /// 
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void button_Click(object sender, RoutedEventArgs e)
        {
            MessageBox.Show("Hello WPF!");
        }
    }
}

实现效果如下:

WPF入门1 -- Hello WPF_第1张图片

你可能感兴趣的:(WPF)