0


《WPF》--DataContext数据双向绑定

文章目录

提示:以下是本篇文章正文内容,下面案例可供参考

一、数据绑定

1)在FrameworkElement类下有两个重要的属性。

  • Resources:获取或设置本地定义的资源字典。
  • DataContext:获取或设置元素参与数据绑定时的数据上下文。

利用这两个属性,可以实现UI数据直接与后台的类进行绑定

2)前端UI界面属性值等动态与后台绑定的方式有多种,此处列出后台设置DataContext以及前端设置DataContext的两种方式,以及数据双向绑定的最佳实践

前端设置DataContext

纯前端的方式好处在于,编译一下,就可以在设计阶段看到效果。
1)先定义好我们的类

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceWpfApp2.entity{publicclassMyButtton{publicstring color {get;set;}="Red";}}

2)在前端按照步骤引入

<Window x:Class="WpfApp2.login"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp2"
        xmlns:btn="clr-namespace:WpfApp2.entity"
        mc:Ignorable="d"
        Title="登录页" Height="450" Width="800"><Grid Name="g"><!--1.声明资源位置 xmlns:btn="clr-namespace:WpfApp2.entity"--><!--2.绑定类资源,key是别名,value是类 --><Grid.Resources><btn:MyButtton x:Key="myDatasource"/></Grid.Resources><!--3.将绑定的资源加入到当前上下文(加入后即可使用) --><Grid.DataContext><Binding Source="{StaticResource myDatasource}"/></Grid.DataContext><!--4.使用属性,直接使用类的属性名即可 --><Button Background="{Binding Path=color}" Width="100" Height="50" Click="Button_Click_1">按钮</Button></Grid></Window>

后台设置DataContext

在设计阶段是看不到效果的,但是灵活性更高,属性值不用写死
1)定义一个类

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceWpfApp2.entity{publicclassMytitle{publicstring Title {get;set;}publicstring color {get;set;}}}

2)在当前窗口加载时,进行绑定DataContext

privatevoidWindow_Loaded(object sender,RoutedEventArgs e){this.DataContext =newMytitle(){
        t="我是标题",
        color="Red"};}

3)前端

<Window x:Class="WpfApp2.login"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp2"
        d:DesignHeight="450" d:DesignWidth="800"
        Loaded="Window_Loaded"
        mc:Ignorable="d"><Grid><Label Content="{Binding Path=t}"></Label></Grid></Window>

二、Fody

在应用中,会很快发现一个问题,数据绑定只有一次,后续我们的数据变化,并不会引起我们视图的变化,这时候需要引入一个轮子,那就是Fody。Fody包会自动将数据和绑定的UI进行同步刷新,来达到我们的要求

安装

1)引入下面三个包
在这里插入图片描述
2)添加FodyWeavers.xml文件
在这里插入图片描述
配置信息如下:

<?xml version="1.0" encoding="utf-8"?><Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"><PropertyChanged /></Weavers>

如果显示已经存在此文件,则从文件夹打开当前项目,显示的复制到项目里,将配置文件添加到xml中。

测试

设置一个简单布局,通过点击按钮,来使得label中数字递增
在这里插入图片描述
1)创建一个类,继承INotifyPropertyChanged,并且alt+enter进行快速实现即可

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceWpfApp3.src{publicclassNumber:INotifyPropertyChanged{publicint num {get;set;}publiceventPropertyChangedEventHandler PropertyChanged;}}

2)在loaded事件中,添加到DataContext中,在按钮事件中进行++操作

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows;usingSystem.Windows.Controls;usingSystem.Windows.Data;usingSystem.Windows.Documents;usingSystem.Windows.Input;usingSystem.Windows.Media;usingSystem.Windows.Media.Imaging;usingSystem.Windows.Navigation;usingSystem.Windows.Shapes;usingWpfApp3.src;namespaceWpfApp3{/// <summary>/// MainWindow.xaml 的交互逻辑/// </summary>publicpartialclassMainWindow:Window{publicMainWindow(){InitializeComponent();}privatestaticNumber number =newNumber(){
            num =0,};privatevoidWindow_Loaded(object sender,RoutedEventArgs e){this.DataContext = number;}privatevoidaddd(object sender,RoutedEventArgs e){
            number.num++;}}

}

3)前端UI直接使用Binding进行绑定

<Window x:Class="WpfApp3.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp3"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800"
        Loaded="Window_Loaded"><Grid><Label VerticalAlignment="Top" HorizontalAlignment="Left" Width="100" Height="50" Background="Red"
               Content="{Binding Path=num}"></Label><Button Content="button" Width="100" Height="100" Background="Gray" Click="addd"></Button></Grid></Window>

三、案例

移动方块

需求:一个白色的方块,通过上下左右键进行操控方块的移动,到达顶部后自动回到当前行或列的起点。
在这里插入图片描述
1)编写数据绑定类

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceWpfApp3.src{publicclassNumber:INotifyPropertyChanged{publicint num {get;set;}//用不到这个publicint rowNum {get;set;}publicint colNum {get;set;}publiceventPropertyChangedEventHandler PropertyChanged;}}

2)页面布局和设置响应事件,千万注意:窗口默认不支持keydown,要开启可焦点功能,然后在窗体初始化时,进行当前窗体的直接聚焦。

<Page x:Class="WpfApp3.Page1"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
      xmlns:local="clr-namespace:WpfApp3"
      mc:Ignorable="d" 
      d:DesignHeight="450" d:DesignWidth="800"
      Loaded="Page_Loaded"  
      Title="Page1" KeyDown="Grid_KeyDown" Focusable="True"><Grid ShowGridLines="True" Background="Green"><Grid.ColumnDefinitions><ColumnDefinition></ColumnDefinition><ColumnDefinition></ColumnDefinition><ColumnDefinition></ColumnDefinition></Grid.ColumnDefinitions><Grid.RowDefinitions><RowDefinition></RowDefinition><RowDefinition></RowDefinition><RowDefinition></RowDefinition></Grid.RowDefinitions><Border Grid.Row="{Binding Path=rowNum}" Grid.Column="{Binding Path=colNum}" Background="White"></Border></Grid></Page>

3)后台

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows;usingSystem.Windows.Controls;usingSystem.Windows.Data;usingSystem.Windows.Documents;usingSystem.Windows.Input;usingSystem.Windows.Media;usingSystem.Windows.Media.Imaging;usingSystem.Windows.Navigation;usingSystem.Windows.Shapes;usingWpfApp3.src;namespaceWpfApp3{/// <summary>/// Page1.xaml 的交互逻辑/// </summary>publicpartialclassPage1:Page{publicPage1(){InitializeComponent();}privatestaticNumber num =newNumber(){
            rowNum =0,
            colNum =0,};privatevoidPage_Loaded(object sender,RoutedEventArgs e){this.DataContext = num;this.Focus();}privatevoidGrid_KeyDown(object sender,KeyEventArgs e){//MessageBox.Show(e.Key.ToString());//num.rowNum++;switch(e.Key){case Key.Left:
                    num.colNum =(num.colNum +2)%3;break;case Key.Right:
                    num.colNum =(num.colNum +1)%3;break;case Key.Up:
                    num.rowNum =(num.rowNum +2)%3;break;case Key.Down:
                    num.rowNum =(num.rowNum +1)%3;break;default:break;}}}}
标签: wpf c# ui

本文转载自: https://blog.csdn.net/qq_43372178/article/details/125529272
版权归原作者 C#全栈小徐 所有, 如有侵权,请联系我们删除。

“《WPF》--DataContext数据双向绑定”的评论:

还没有评论