使用MvvMLight框架 简化 INotifyPropertyChanged ICommand过程,实现前后端分离

首先,在Nuget上下载MvvMLightLibs,这个包是一个类,需要自己建实例
在这里插入图片描述

前端代码

<Window x:Class="WpfFrameworkTest2.Banding"
        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:WpfFrameworkTest2"
        mc:Ignorable="d"
        Title="Banding" Height="450" Width="800" WindowStartupLocation="CenterScreen">
    <Grid>
        <StackPanel>
            <TextBox Text="{Binding Name}" Height="50" Margin="5"/>
            <TextBox Text="{Binding Title}" Height="50" Margin="5"/>
            <Button Content="{Binding Title}" Command="{Binding ShowCommand}" Height="50" Margin="5"/>
        </StackPanel>
    </Grid>
</Window>

后台代码,可以看到TextBox的 Text, Button中的Content 与Command 利用MvvMLight轻易实现了前后端分离,代码只在构造函数部分进行了初始化
this.DataContext = new MainView();

完全摆脱了Winform以事件驱动的机制

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace WpfFrameworkTest2
{
    /// <summary>
    /// Banding.xaml 的交互逻辑
    /// </summary>
    public partial class Banding : Window
    {
        public Banding()
        {
            InitializeComponent();
            this.DataContext = new MainView();
        }
    }
}

MainView 类的定义。

using GalaSoft.MvvmLight.Command;
using GalaSoft.MvvmLight;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;

namespace WpfFrameworkTest2
{
    public class MainView : ViewModelBase
    {
        public MainView()//ctos
        {
            this.Name = "我是姓名";
            this.Title = "我是标题";
            this.ShowCommand = new RelayCommand(Show);
        }

        private string _name;

        private string _title;


        public RelayCommand ShowCommand { get; set; }
        public string Name
        {
            get { return _name; }
            set
            {
                _name = value;
                RaisePropertyChanged();
            }
        }

        public string Title
        {
            get { return _title; }
            set
            {
                _title = value;
                RaisePropertyChanged();
            }
        }

        public void Show()
        {
            Name = "我是通过框架点击了按钮!";
            Title = "我是通过框架修改了标题!";
            MessageBox.Show(Name);
        }
    }
}

效果

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

潘诺西亚的火山

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值