WPF—INotifyPropertyChanged

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

示例

XAML

  1. <Window x:Class="WpfTest.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfTest"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="800">
  9. <Grid>
  10. <Button Content="Button" HorizontalAlignment="Left" Margin="20,26.213,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
  11. <TextBlock Name="textBlock" Text="{Binding Path=Name}" HorizontalAlignment="Left" Margin="134.8,27.813,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="80.2"/>
  12.  
  13. </Grid>
  14. </Window>

代码

  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. using System.ComponentModel;//INotifyPropertyChanged
  15.  
  16. namespace WpfTest
  17. {
  18. /// <summary>
  19. /// MainWindow.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class MainWindow : Window
  22. {
  23. private Student student = new Student();
  24. public MainWindow()
  25. {
  26. InitializeComponent();
  27.  
  28. textBlock.DataContext = student;
  29. }
  30.  
  31. private void Button_Click(object sender, RoutedEventArgs e)
  32. {
  33. student.Name = "New-Name";
  34. }
  35. }
  36.  
  37. /// <summary>
  38. /// INotifyPropertyChanged接口可实现数据到UI的通知
  39. /// (即当数据变化时通知UI更新显示)
  40. /// </summary>
  41. public class Student : INotifyPropertyChanged
  42. {
  43. public event PropertyChangedEventHandler PropertyChanged;
  44.  
  45. private string m_Name = "Default-Name";
  46.  
  47. public string Name
  48. {
  49. get { return m_Name; }
  50. set {
  51. m_Name = value;
  52. //通知UI更新显示
  53. PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Name"));
  54. }
  55. }
  56. }
  57. }

运行测试


1111.png2222.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号