WPF开发实例——仿QQ登录界面

刚开始学WPF,自己写了个小东西,说实话写的并不好,好多东西不懂只是用现在懂的东西来写的,效果如图

WPF开发实例——仿QQ登录界面_第1张图片

下面是源码,理论上很简单,我直接放代码了。

自定义用户控件RightButton.xaml


    
        

        

        
    
    
        
        
        
    

RightButton.xmal.cs

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 WpfApplication8
{
    /// 
    /// RigthButton.xaml 的交互逻辑
    /// 
    public partial class RigthButton : UserControl
    {
        public RigthButton()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {

        }

        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            
        }

        private void Button_Click_2(object sender, RoutedEventArgs e)
        {
            Application.Current.Shutdown();
        }
    }
}
MainWindow.xaml


	
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
	
    
        
        	
        		
        	
            
                
            
        
        
            
                
                    
                        
                    
                
                
                    
                        
                            用户名
                            密码
                        
                    
                   
                    
                        记住密码
                        自动登陆
                    

                

                
                    
						注册账号
					
                    
						找回密码
					
                

            

            
                
                
        
    



你可能感兴趣的:(WFP,WPF,C#,QQ,登录界面)