日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > asp.net >内容正文

asp.net

无废话WPF系列19:MVVM简单介绍

發布時間:2025/3/17 asp.net 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 无废话WPF系列19:MVVM简单介绍 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

MVVM主要是為了邏輯代碼和視圖的分離,使CodeBehind只包含對UI的操作。通過綁定和Command來實現

下面我們實現一個最簡單的示例,點擊按鈕使年齡加1.

XAML代碼

<Window x:Class="DeepXAML.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:local="clr-namespace:DeepXAML" xmlns:sys="clr-namespace:System;assembly=mscorlib"xmlns:cl="clr-namespace:System.Collections;assembly=mscorlib"Title="MainWindow" Height="250" Width="450"><StackPanel><TextBox Text="{Binding Path=Name}"></TextBox><TextBox Text="{Binding Path=Age}"></TextBox><Button Command="{Binding Path=AddAge}" >Add Age</Button></StackPanel> </Window>

?

MainPageViewModel

public class MainPageViewModel : INotifyPropertyChanged{public event PropertyChangedEventHandler PropertyChanged;private string name;public string Name {get { return name; }set {name = value;if (this.PropertyChanged != null){this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Name"));}}}private int age;public int Age {get { return age; }set{age = value;if (this.PropertyChanged != null){this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs("Age"));}}}public ICommand AddAge{get { return new AddAgeCommand(this); }}}

?

public class AddAgeCommand : ICommand{private MainPageViewModel mMainPageViewModel;public AddAgeCommand(MainPageViewModel model){mMainPageViewModel = model;}public bool CanExecute(object parameter){return true;}public event EventHandler CanExecuteChanged;public void Execute(object parameter){this.mMainPageViewModel.Age += 1;}}

?

我們可以看一下后臺只有很少代碼:

public partial class MainWindow : Window{public MainWindow(){InitializeComponent();MainPageViewModel mainPageViewModel = new MainPageViewModel { Age = 20, Name = "Jack" };this.DataContext = mainPageViewModel;} } 新人創作打卡挑戰賽發博客就能抽獎!定制產品紅包拿不停!

總結

以上是生活随笔為你收集整理的无废话WPF系列19:MVVM简单介绍的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。