使用MVVM DataTriggers在WPF XAML视图之间切换/Window窗口自适应内容大小并居中
原文 使用MVVM DataTriggers在WPF XAML视图之间切换
相关文章:
http://www.technical-recipes.com/2016/switching-between-wpf-xaml-views-using-mvvm-datatemplate/
这篇文章解决了能够根据ViewModel类的属性在不同视图之间切换的问题。
要开始使用Visual Studio,请创建一个新的WPF应用程序:

因此,当我们构建并运行应用程序时,我们有一个这样的空白窗口:

为了演示如何在不同视图之间切换WPF窗口,创建两个新的XAML视图View1.xaml和View2.xaml,每个视图由一个包含不同文本的简单TextBlock组成,以证明视图不同。
在Visual Studio项目中,右键单击项目文件夹,然后选择“添加”>“新建项”。选择用户控件(WPF)并将文件命名为View1.xaml:

在文件的xaml部分中,插入代码以在视图中显示Text,如下所示:
<UserControl
x:Class="MvvmSwitchViews.View1"
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:ei="http://schemas.microsoft.com/expression/2010/interactions"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:local="clr-namespace:MvvmSwitchViews"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Width="800"
Height="450"
Background="Red"
mc:Ignorable="d">
<Grid>
<Button
Margin="10"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Content=" Screen for View2"
FontSize="20">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<ei:ChangePropertyAction
PropertyName="ContentTemplate"
TargetObject="{Binding ElementName=ct}"
Value="{DynamicResource View2Template}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
</Grid>
</UserControl>
重复上一步,但这次创建一个名为View2.xaml的新视图。插入View2.xaml的代码,如下所示:
<UserControl
x:Class="MvvmSwitchViews.View2"
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:ei="http://schemas.microsoft.com/expression/2010/interactions"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:local="clr-namespace:MvvmSwitchViews"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Width="400"
Height="200"
Background="Green"
mc:Ignorable="d">
<Grid>
<Button
Margin="10"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Content=" Screen for View1"
FontSize="20">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<ei:ChangePropertyAction
PropertyName="ContentTemplate"
TargetObject="{Binding ElementName=ct}"
Value="{DynamicResource View1Template}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
</Grid>
</UserControl>
我们可能希望根据类的属性在XAML视图之间切换。例如,如果我们的ViewModel属性设置为“0”,则显示View1; 否则,如果我们的ViewModel属性设置为“1”,则显示View 2。在这种情况下,您将使用DataTrigger。
右键单击项目文件夹,创建一个非常简单的ViewModel类,选择Add> New Item。选择Class,我们将调用我们的ViewModel类MainWindowViewModel.cs:

我们的ViewModel类包含一个getter / setter属性和一个用于设置默认属性值的构造函数:
namespace MvvmSwitchViews
{
public class MainWindowViewModel
{
public int SwitchView
{
get;
set;
} public MainWindowViewModel()
{
SwitchView = ;
}
}
}
在我们的MainWindow.xaml中,我们使用我们创建的ViewModel类配置DataTemplate,DataContext。
还有DataTrigger,告诉应用程序显示哪个视图,如果属性设置为默认值以外的任何值:
<Window
x:Class="MvvmSwitchViews.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:local="clr-namespace:MvvmSwitchViews"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow"
local:CenterOnSizeChangeBehaviour.CenterOnSizeChange="True"
SizeToContent="WidthAndHeight"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
<Window.DataContext>
<local:MainWindowViewModel />
</Window.DataContext>
<Window.Resources>
<DataTemplate x:Key="View1Template" DataType="{x:Type local:MainWindowViewModel}">
<local:View1 />
</DataTemplate>
<DataTemplate x:Key="View2Template" DataType="{x:Type local:MainWindowViewModel}">
<local:View2 />
</DataTemplate>
</Window.Resources>
<Grid>
<ContentControl x:Name="ct" Content="{Binding}">
<ContentControl.Style>
<Style TargetType="{x:Type ContentControl}">
<Setter Property="ContentTemplate" Value="{StaticResource View1Template}" />
<Style.Triggers>
<DataTrigger Binding="{Binding SwitchView}" Value="">
<Setter Property="ContentTemplate" Value="{StaticResource View2Template}" />
</DataTrigger>
</Style.Triggers>
</Style>
</ContentControl.Style>
</ContentControl>
</Grid>
</Window>
在我们的ViewModel构造函数中,'SwitchView'属性默认为“0”,从而导致应用程序在运行时显示View1:

现在在ViewModel构造函数中将'SwitchView'属性设置为“1”:
public MainWindowViewModel()
{
SwitchView = ;
}
重新构建并重新运行应用程序时,我们将显示View2屏幕,如下所示:

Window窗口自适应内容大小并居中
using System.Windows; namespace MvvmSwitchViews
{
public static class CenterOnSizeChangeBehaviour
{
/// <summary>
/// Centers the window in the screen, when its changing its size.
/// </summary>
public static readonly DependencyProperty CenterOnSizeChangeProperty =
DependencyProperty.RegisterAttached
(
"CenterOnSizeChange",
typeof(bool),
typeof(CenterOnSizeChangeBehaviour),
new UIPropertyMetadata(false, OnCenterOnSizeChangePropertyChanged)
); public static bool GetCenterOnSizeChange(DependencyObject obj)
{
return (bool)obj.GetValue(CenterOnSizeChangeProperty);
}
public static void SetCenterOnSizeChange(DependencyObject obj, bool value)
{
obj.SetValue(CenterOnSizeChangeProperty, value);
} private static void OnCenterOnSizeChangePropertyChanged(DependencyObject dpo, DependencyPropertyChangedEventArgs args)
{
System.Windows.Window window = dpo as System.Windows.Window;
if (window != null)
{
if ((bool)args.NewValue)
{
window.SizeChanged += OnWindowSizeChanged;
}
else
{
window.SizeChanged -= OnWindowSizeChanged;
}
}
}
private static void OnWindowSizeChanged(object sender, SizeChangedEventArgs e)
{
System.Windows.Window window = (System.Windows.Window)sender;
window.WindowStartupLocation = WindowStartupLocation.Manual;
window.Left = (SystemParameters.WorkArea.Width - window.ActualWidth) / + SystemParameters.WorkArea.Left;
window.Top = (SystemParameters.WorkArea.Height - window.ActualHeight) / + SystemParameters.WorkArea.Top;
}
}
}
使用MVVM DataTriggers在WPF XAML视图之间切换/Window窗口自适应内容大小并居中的更多相关文章
- 使用MVVM DataTemplate在WPF XAML视图之间切换
原文 使用MVVM DataTemplate在WPF XAML视图之间切换 更新:这个技术的改进版本,一个不创建视图,可以在以下链接找到: http://www.technical-recipes.c ...
- WPF自定义控件与样式(13)-自定义窗体Window & 自适应内容大小消息框MessageBox
一.前言 申明:WPF自定义控件与样式是一个系列文章,前后是有些关联的,但大多是按照由简到繁的顺序逐步发布的等,若有不明白的地方可以参考本系列前面的文章,文末附有部分文章链接. 本文主要内容: 自定义 ...
- 【转】WPF自定义控件与样式(13)-自定义窗体Window & 自适应内容大小消息框MessageBox
一.前言 申明:WPF自定义控件与样式是一个系列文章,前后是有些关联的,但大多是按照由简到繁的顺序逐步发布的等. 本文主要内容: 自定义Window窗体样式: 基于自定义窗体实现自定义MessageB ...
- 【逆向工具】IDA使用5-( string、图形化与视图的切换、图形化显示反汇编地址、自动注释、标签使用)
分析petya病毒时新学会的技巧. IDA技巧1 : string 提取文件中的字符串内容,如果看到一些文件字符串可以定位到关键的函数中. view -> open subview -> ...
- 使用MVVM设计模式构建WPF应用程序
使用MVVM设计模式构建WPF应用程序 本文是翻译大牛Josh Smith的文章,WPF Apps With The Model-View-ViewModel Design Pattern,译者水平有 ...
- 企业级架构 MVVM 模式指南 (WPF 和 Silverlight 实现) 译(2)
本书包含的章节内容 第一章:表现模式,以一个例子呈献给读者表现模式的发展历程,我们会用包括MVC和MVP在内的各种方式实现一个收费项目的例子.沿此方向,我们会发现每一种模式的问题所在,这也是触发设计模 ...
- MVVM框架从WPF移植到UWP遇到的问题和解决方法
MVVM框架从WPF移植到UWP遇到的问题和解决方法 0x00 起因 这几天开始学习UWP了,之前有WPF经验,所以总体感觉还可以,看了一些基础概念和主题,写了几个测试程序,突然想起来了前一段时间在W ...
- wpf多程序集之间共享资源字典--CLR名称空间未定义云云
wpf多程序集之间共享资源字典--CLR名称空间未定义云云 分类: WPF 2012-10-28 10:57 1162人阅读 评论(0) 收藏 举报 以下介绍如何创建可用于在多个程序集之间共享的资源字 ...
- WPF XAML之bing使用StringFormat
WPF XAML之bing使用StringFormat // 转化为百分比 Text="{Binding Progress, StringFormat=\{0:P\}}" < ...
随机推荐
- BestCoder Round #11 (Div. 2) 前三题题解
题目链接: huangjing hdu5054 Alice and Bob 思路: 就是(x,y)在两个參考系中的表示演全然一样.那么仅仅可能在这个矩形的中点.. 题目: Alice and Bob ...
- context.getSystemService的简单说明
在android开发过程中这种方法一定不会陌生,比方我们在获取WindowManager和LayoutInflater对象的时候就须要我们调用这种方法.这种方法在context这个抽象类的一个抽象方法 ...
- 6、linux中同步、互斥、阻塞(原子操作、信号量、阻塞)
1. 原子操作原子操作指的是在执行过程中不会被别的代码路径所中断的操作.常用原子操作函数举例:atomic_t v = ATOMIC_INIT(0); //定义原子变量v并初始化为0atomi ...
- 通过WPF中UserControl内的按钮点击关闭父窗体
原文:通过WPF中UserControl内的按钮点击关闭父窗体 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/m0_37591671/article ...
- 【BZOJ 1597】 [Usaco2008 Mar]土地购买
[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 把这n个土地按照x为第一关键字.y为第二关键字.都升序排. 然后考虑一个土地xi,yi 若有一个土地的x<=xi且y<= ...
- 【30.36%】【codeforces 740D】Alyona and a tree
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...
- ios开发网络学习AFN三:AFN的序列化
#import "ViewController.h" #import "AFNetworking.h" @interface ViewController () ...
- 群晖synology的Video Station无法通过浏览器在线播放视频
群晖synology的Video Station无法通过浏览器在线播放视频 http://www.hangge.com/blog/cache/detail_419.html
- 我眼中的c++编程总结-20150602
断断续续的学习了非常多东西,有51.Avr.ARM.PLC.C\C++.C#.TB.MC.mql4.linux....等等,近乎填鸭或者囫囵吞枣的.甚至饿狼般的扑到里面,慢慢的积累和理解中,非常多知识 ...
- 从头认识Spring-2.3 注解装配-@autowired(5)-限定器@Qualifier(1)
这一章节我们来具体讨论一下配合@autowired一起使用的限定器@Qualifier. 1.domain(重点) 蛋糕类: package com.raylee.my_new_spring.my_n ...