使用WPF模仿Windows记事本界面

本次仅模仿Windows记事本的模样,并未实现其功能。

所有代码如下:


    
        
            
                
                
                
            
            
                
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                
                
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                    
                
                
                    
                        
                        
                        
                    
                    
                    
                
            
            
            
                
                
                
                
            
        
    

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 控件的基础使用
{
    /// 
    /// Interaction logic for MainWindow.xaml
    /// 
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
    }
}

使用WPF模仿Windows记事本界面_第1张图片

菜单:

使用WPF模仿Windows记事本界面_第2张图片

使用WPF模仿Windows记事本界面_第3张图片

使用WPF模仿Windows记事本界面_第4张图片

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