WPF—PropertyMetadata

作者:追风剑情 发布于:2019-8-14 21:30 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14.  
  15. namespace WpfApp5
  16. {
  17. /// <summary>
  18. /// MainWindow.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class MainWindow : Window
  21. {
  22. Student stu = new Student();
  23.  
  24. public MainWindow()
  25. {
  26. InitializeComponent();
  27. }
  28.  
  29. private void Button_Click(object sender, RoutedEventArgs e)
  30. {
  31. Console.WriteLine("Name={0}", stu.Name);
  32. stu.Name = "New-Name";
  33. Console.WriteLine("Name={0}", stu.Name);
  34. }
  35. }
  36. }
  37.  
  38. public class Student : DependencyObject
  39. {
  40.  
  41. public string Name
  42. {
  43. get { return (string)GetValue(NameProperty); }
  44. set { SetValue(NameProperty, value); }
  45. }
  46.  
  47. // 值变换时回调
  48. private static void NameChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
  49. {
  50. Console.WriteLine("Name={0}", e.NewValue);
  51. }
  52.  
  53. // 校验值回调
  54. private static object NameCoerceCallback(DependencyObject d, object baseValue)
  55. {
  56. Console.WriteLine("NameCoerceCallback: baseValue={0}", baseValue);
  57. baseValue += "-Coerce";
  58. return baseValue;
  59. }
  60.  
  61. public static readonly DependencyProperty NameProperty =
  62. DependencyProperty.Register(
  63. "Name",
  64. typeof(string),
  65. typeof(Student),
  66. new PropertyMetadata("Default-Name", NameChangedCallback, NameCoerceCallback)
  67. );
  68. }

运行测试 (点击按钮后的输出)

11111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号