WPF 高级篇 MVVM 附加属性

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 高级篇 MVVM 附加属性相关的知识,希望对你有一定的参考价值。

原文:WPF 高级篇 MVVM 附加属性

WPF 特性之一 附加属性 在本文里实现文本框内容的验证

技术图片

 

  1. public class TextBoxHelper:DependencyObject
  2. {
  3. public static bool GetisOnlyNumber(DependencyObject obj)
  4. {
  5. return (bool)obj.GetValue(isOnlyNumberProperty);
  6. }
  7. public static void SetisOnlyNumber(DependencyObject obj, bool value)
  8. {
  9. obj.SetValue(isOnlyNumberProperty, value);
  10. }
  11. // Using a DependencyProperty as the backing store for isOnlyNumber. This enables animation, styling, binding, etc...
  12. public static readonly DependencyProperty isOnlyNumberProperty =
  13. DependencyProperty.RegisterAttached("isOnlyNumber", typeof(bool), typeof(TextBoxHelper), new PropertyMetadata(false,OnIsOnlyNumberChange));
  14. private static void OnIsOnlyNumberChange(DependencyObject d, DependencyPropertyChangedEventArgs e)
  15. {
  16. var text = d as TextBox;
  17. if ((bool)e.NewValue)
  18. {
  19. text.PreviewTextInput += text_PreviewTextInput;
  20. }else{
  21. text.PreviewTextInput -= text_PreviewTextInput;
  22. }
  23. }
  24. static void text_PreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e)
  25. {
  26. e.Handled = IsNotNumber(e.Text);
  27. }
  28. private static bool IsNotNumber(string content)
  29. {
  30. Regex regex = new Regex("[^0-9]");
  31. return regex.IsMatch(content);
  32. }
  33. }

引用命名空间

  xmlns:bhx ="clr-namespace:WPF.Behaviors"
        <TextBox bhx:TextBoxHelper.isOnlyNumber="True" HorizontalAlignment="Left" Height="23" Margin="10,131,0,0" TextWrapping="Wrap" Text="{Binding CurrentBook.Pages}" VerticalAlignment="Top" Width="120"/>

 

以上是关于WPF 高级篇 MVVM 附加属性的主要内容,如果未能解决你的问题,请参考以下文章

WPF 利用附加属性创建FreezableCollection集合和反射实现控件参数以MVVM模式传递

WPF MVVM模式下实现ListView下拉显示更多内容

WPF 精修篇 附加属性

WPF MVVM 网易云音乐

WPF QuickStart系列之附加属性(Attached Property)

wpf MVVM框架基础