其他分享
首页 > 其他分享> > 2021-02-01

2021-02-01

作者:互联网

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

 

文章目录

 


前言

之前一直在使用基于Winform进行开发软件但是界面一致比较Low,最近刚接触了WPF发现关于界面的资源和优化比较充足 而且架构更加随意,

所以在这里记录一下学习WPF的过程

 

一、什么是WPF?

WPF(Windows Presentation Foundation)是微软推出的基于Windows 的用户界面框架,属于.NET Framework 3.0的一部分。它提供了统一的编程模型、语言和框架,真正做到了分离界面设计人员与开发人员的工作;同时它提供了全新的多媒体交互用户图形界面。

二、使用步骤

1.界面代码导入头文件

代码如下(示例):

using System.ComponentModel

 

2.数据绑定的一种方法

代码如下(示例):

///自定义一个类
class:INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;
    private int age;
    public int Age{get{return age;}
                   set{this.age=Value;
                  if(PropertyChanged!=null)
                    {
                    PropertyChanged.Invoke(this,new PropertyChangedEventArgs("Age"));
        }  
    }
    }
}
///xaml
<Textbox x:Name="tb1" Margin="100,100,50,200"/>
///xaml.cs界面代码如下:
Binding mBind=new Binding();
Student mStucent=new Student();
public MainWindow()
{
  InitializeComponent();
  mStudent.Age=100;
  mBind.Source=mStudent;
  mBind.Path=new PropertyPath("Age");
  BindingOperations.SetBinding(tb1,Textbox.TextProperty,mBind);
/// tb1.SetBinding(Text.Property,mBind);
}


该处使用的url网络请求的数据。


总结

提示:这里对文章进行总结:
 

标签:02,PropertyChanged,01,Age,2021,new,WPF,public,mBind
来源: https://blog.csdn.net/wanxiweilai/article/details/113531364