笔记03 wpf 在MVVM模式下怎样在Viewmodel里面获得view的控件对象

 转自http://blog.csdn.net/qing2005/article/details/6601199http://blog.csdn.net/qing2005/article/details/6601475

MVVM中轻松实现Command绑定(二)传递Command参数

属性栏里去设置的。语句应该是CommandParameter="{Binding ElementName=控件名}"

我们如果需要在Command中传递参数,实现也很简单。DelegateCommand还有一个DelegateCommand<T>版本,可以传递一个T类型的参数。

1.View的Button绑定,其中CommandParameter定义了一个“20”的参数

[html] view plaincopy

  1. <Window x:Class="WpfApplication1.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:vm="clr-namespace:WpfApplication1"
  5. Title="Window1" Height="193" Width="190">
  6. <Window.DataContext>
  7. <vm:Window1ViewModel />
  8. </Window.DataContext>
  9. <Grid>
  10. <Button Content="Button" Height="33" HorizontalAlignment="Left" Margin="34,20,0,0" Name="button1" VerticalAlignment="Top" Width="109"
  11. Command="{Binding ButtonCommand}"
  12. CommandParameter="20"/>
  13. </Grid>
  14. </Window>

2.ViewModel定义命令,注意委托参数

[csharp] view plaincopy

  1. namespace WpfApplication1 {
  2. public class Window1ViewModel {
  3. public ICommand ButtonCommand {
  4. get {
  5. return new DelegateCommand<string>((str) => {
  6. MessageBox.Show("Button‘s parameter:"+str);
  7. });
  8. }
  9. }
  10. }
  11. }

并且,特殊情况下,我们可以将控件对象作为参数传递给ViewModel,注意{Binding RelativeSource={x:Static RelativeSource.Self}}是绑定自己(Button)的意思。

[html] view plaincopy

  1. <Window x:Class="WpfApplication1.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:vm="clr-namespace:WpfApplication1"
  5. Title="Window1" Height="193" Width="190">
  6. <Window.DataContext>
  7. <vm:Window1ViewModel />
  8. </Window.DataContext>
  9. <Grid>
  10. <Button Content="Button" Height="33" HorizontalAlignment="Left" Margin="34,20,0,0" Name="button1" VerticalAlignment="Top" Width="109"
  11. Command="{Binding ButtonCommand}"
  12. CommandParameter="20"/>
  13. <Button Content="Button" Height="33" HorizontalAlignment="Left" Margin="34,85,0,0" Name="button2" VerticalAlignment="Top" Width="109"
  14. Command="{Binding ButtonCommand2}"
  15. CommandParameter="{Binding RelativeSource={x:Static RelativeSource.Self}}"/>
  16. </Grid>
  17. </Window>

再看ViewModel

[csharp] view plaincopy

  1. namespace WpfApplication1 {
  2. public class Window1ViewModel {
  3. public ICommand ButtonCommand {
  4. get {
  5. return new DelegateCommand<string>((str) => {
  6. MessageBox.Show("Button‘s parameter:"+str);
  7. });
  8. }
  9. }
  10. public ICommand ButtonCommand2 {
  11. get {
  12. return new DelegateCommand<Button>((button) => {
  13. button.Content = "Clicked";
  14. MessageBox.Show("Button");
  15. });
  16. }
  17. }
  18. }
  19. }

这样就可以在委托中获取Button对象了。但是MVVM本身比建议ViewModel操作View。

时间: 2024-09-30 11:08:57

笔记03 wpf 在MVVM模式下怎样在Viewmodel里面获得view的控件对象的相关文章

浅析WPF中MVVM模式下命令与委托的关系

??各位朋友大家好,我是Payne,欢迎大家关注我的博客,我的博客地址是http://qinyuanpei.com.最近因为项目上的原因开始接触WPF,或许这样一个在现在来讲显得过时的东西,我猜大家不会有兴趣去了解,可是你不会明白对某些保守的项目来讲,安全性比先进性更为重要,所以当你发现银行这类机构还在使用各种"复古"的软件系统的时候,你应该相信这类东西的确有它们存在的意义.与此同时,你会更加深刻地明白一个道理:技术是否先进性和其流行程度本身并无直接联系.由此我们可以推论出:一项不流行

WPF:MVVM模式下ViewModel关闭View

不外乎两种基本方法. 消息通知和参数传递. 一.消息通知 利用View里的IsEnable属性 原理是这样的: 1.UI中的IsEnabled绑定VM中的属性 2.UI的后台代码中,注册IsEnableChange事件,在这个事件里,检测到传过来的值满足某个条件,即可触发Close()命令 如此,VM控制自己那个属性就能达到关闭V的目的了. 二.参数传递. 根据参数传递的不同.分为传递函数和传递View对象. 1传递函数 该方法:需要三步. 1.重写ViewModel的构造函数 public P

WPF 在MVVM模式下弹出子窗体的方式

主要是通过一个WindowManager管理类,在window后台代码中通过WindowManager注册需要弹出的窗体类型,在ViewModel通过WindowManager的Show方法,显示出来. WindowManager代码如下: public static class WindowManager { private static Hashtable _RegisterWindow = new Hashtable(); public static void Regiter<T>(st

WPF之MVVM模式(3)

有种想写一个MVVM框架的冲动!!! 1.Model中的属性应不应该支持OnPropertyChanged事件? 不应该.应该有ViewModel对该属性进行封装,由ViewModel提供OnPropertyChanged事件.WPF之MVVM(1)中有实例 2.如何将控件事件转换为命令? 在“扩展”中添加“System.Windows.Interractivity”引用 xaml中添加xmlns:i="http://schemas.microsoft.com/expression/2010/i

WPF MVVM模式下动画的实现

原文:WPF MVVM模式下动画的实现 在MVVM模式下,数据的显示都是通过绑定来实现的.当我们在ViewModel里修改数据时,View里面的界面会瞬间变化.但是如果我们希望这个变化有一个动画效果,应该怎么做呢? 可能一开始我们会想到DoubleAnimation.StoryBoard这些东西,但我们很快就会发现,它们只能操作View里面的元素,我们无法在ViewModel里使用它们. 我们在这里使用的方法是:创建一个类似DoubleAnimation的类,它的操作对象就是普通的double类

【WPF】MVVM模式的3种command

原文:[WPF]MVVM模式的3种command 1.DelegateCommand 2.RelayCommand 3.AttachbehaviorCommand 因为MVVM模式适合于WPF和SL,所以这3种模式中也有一些小差异,比如RelayCommand下面的CommandManager方法就是WPF下面的,SL下面无法使用,不过我认为这3种方法中的基本思路都如出一辙,都是出自那位外国牛人的文章里面.主要的区别在于和VIEW中的控件的绑定使用上.有点不同的attachbehaviorcom

MVVM模式下如何使用ReactiveCocoa响应链式编程&lt;一&gt;

前一阵子公司要求项目从新架构,但又只给不到一个月的时间,这显然是不可能的.但从新架构又是在所难免的,和同事商定后决定一部分交互逻辑比较少的界面先使用MVVM架构,然后慢慢修改.下面整理了一下这次重构的遇到的问题,并希望能给大家一些帮助. 1.ReactiveCocoa的使用 要使用MVVM模式编程收下选择一个框架,当然不仅仅是ReactiveCocoa这一个框架,这里就不多说.当然我也没用过别的,如果哪位看官用过可以多多指教.接下来我就按步骤说了: 第一步:导入ReactiveCocoa框架,建

WPF之MVVM模式(2)

我们都想追求完美 Every view in the app has an empty codebehind file, except for the standard boilerplate code that calls InitializeComponent in the class's constructor. In fact, you could remove the views' codebehind files from the project and the applicatio

MVVM模式下的OpenFileDialog

对于MVVM模式下的ViewModel层来说,是不应该直接访问OpenFileDialog或者FolderBrowserDialog的,否则VM会变得难以测试. 参考StackOverFlow,对ViewModel进行改造,使OpenFileDialog动作也可以测试. 首先实现接口IIOService public interface IIOService { string OpenFileDialog(string srcFilter = ""); IList<string&