WPF 中PasswordBox控件的Password属性不能Binding问题解决方法

最近用到了PasswordBox控件,但是发现Password属性不能Binding,因为它不是依赖属性,在网上找了找解决方法,自己做了小Demo,方便以后使用。


一、前台文件内容

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="142" Width="256"
        xmlns:Helper="clr-namespace:PasswordBoxDemo"
        WindowStartupLocation="CenterScreen">
   
                          HorizontalAlignment="Stretch"
                  VerticalAlignment="Stretch"
                  >
           
               
                   
                       
                           
                               
                                                                                 HorizontalAlignment="Stretch"
                                             VerticalAlignment="Stretch"
                                             Text="{Binding Path=UserName}"
                                             ToolTip="{Binding Path=UserName}"
                                             Width="100"
                                             Height="20">
                               

                           

                       

                       
                           
                               
                                                                                     HorizontalAlignment="Stretch"
                                                 VerticalAlignment="Stretch"
                                                 Width="100"
                                                 Height="20"
                                                 PasswordChar="*"
                                                 MaxLength="20"
                                                 Helper:PasswordBoxHelper.Attach="True"
                                                 Helper:PasswordBoxHelper.Password="{Binding Path=Pwd,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"
/>
                               

                           

                       

                   

               

           

       

   



二、后台内容

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
using System.Collections.ObjectModel;


namespace PasswordBoxDemo
{
    ///


    /// MainWindow.xaml 的交互逻辑
    ///

    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            this.Loaded += new RoutedEventHandler(MainWindow_Loaded);
        }


        void MainWindow_Loaded(object sender, RoutedEventArgs e)
        {
            ObservableCollection users = new ObservableCollection();

            User p = new User();
            p.UserName = "张三";
            p.Pwd = "zhangsan";

            User p2 = new User();
            p2.UserName = "李四";
            p2.Pwd = "lisi";

            users.Add(p);
            users.Add(p2);

            this.lvUsers.ItemsSource = users;
           
        }
    }


    public class User
    {
        private string _userName;
        private string _password;
        public string UserName
        {
            set { _userName = value; }
            get { return _userName; }
        }


        public string Pwd
        {
            set { _password = value; }
            get { return _password; }
        }
    }
}


三、帮助类 PasswordBoxHelper.cs 内容,代码摘自:http://www.wpftutorial.net/PasswordBox.html

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;


namespace PasswordBoxDemo
{
    ///

 
    /// 为PasswordBox控件的Password增加绑定功能  
    ///
 
    public static class PasswordBoxHelper
    {
        public static readonly DependencyProperty PasswordProperty =
            DependencyProperty.RegisterAttached("Password",
            typeof(string), typeof(PasswordBoxHelper),
            new FrameworkPropertyMetadata(string.Empty, OnPasswordPropertyChanged));
        public static readonly DependencyProperty AttachProperty =
            DependencyProperty.RegisterAttached("Attach",
            typeof(bool), typeof(PasswordBoxHelper), new PropertyMetadata(false, Attach));
        private static readonly DependencyProperty IsUpdatingProperty =
           DependencyProperty.RegisterAttached("IsUpdating", typeof(bool),
           typeof(PasswordBoxHelper));


        public static void SetAttach(DependencyObject dp, bool value)
        {
            dp.SetValue(AttachProperty, value);
        }
        public static bool GetAttach(DependencyObject dp)
        {
            return (bool)dp.GetValue(AttachProperty);
        }
        public static string GetPassword(DependencyObject dp)
        {
            return (string)dp.GetValue(PasswordProperty);
        }
        public static void SetPassword(DependencyObject dp, string value)
        {
            dp.SetValue(PasswordProperty, value);
        }
        private static bool GetIsUpdating(DependencyObject dp)
        {
            return (bool)dp.GetValue(IsUpdatingProperty);
        }
        private static void SetIsUpdating(DependencyObject dp, bool value)
        {
            dp.SetValue(IsUpdatingProperty, value);
        }
        private static void OnPasswordPropertyChanged(DependencyObject sender,
            DependencyPropertyChangedEventArgs e)
        {
            PasswordBox passwordBox = sender as PasswordBox;
            passwordBox.PasswordChanged -= PasswordChanged;
            if (!(bool)GetIsUpdating(passwordBox))
            {
                passwordBox.Password = (string)e.NewValue;
            }
            passwordBox.PasswordChanged += PasswordChanged;
        }
        private static void Attach(DependencyObject sender,
            DependencyPropertyChangedEventArgs e)
        {
            PasswordBox passwordBox = sender as PasswordBox;
            if (passwordBox == null)
                return;
            if ((bool)e.OldValue)
            {
                passwordBox.PasswordChanged -= PasswordChanged;
            }
            if ((bool)e.NewValue)
            {
                passwordBox.PasswordChanged += PasswordChanged;
            }
        }
        private static void PasswordChanged(object sender, RoutedEventArgs e)
        {
            PasswordBox passwordBox = sender as PasswordBox;
            SetIsUpdating(passwordBox, true);
            SetPassword(passwordBox, passwordBox.Password);
            SetIsUpdating(passwordBox, false);
        }
    }
}


四、截图


WPF 中PasswordBox控件的Password属性不能Binding问题解决方法_第1张图片


五、参考博客地址:http://blog.csdn.net/fxhflower/article/details/6614831



你可能感兴趣的:(WPF)