【WPF】感叹XAML的强大,感叹微软的伟大

简介:

在使用XAML进行页面布局的时候,原以为只有Button才可能绑定Command命令(默认对应Click事件),其实通过微软Blend提供的库,一切都可Command。
只要记住下面两个命名空间的对应关系即可
xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" == Microsoft.Expression.Interactions.dll
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" == System.Windows.Interactivity.dll
第一个是使用来进行条件判断的,第二个是命令触发的。上面两个命名空间也可以使用clr-namespace这样的方式直指DLL。
触发命令还可以带上条件,多么牛的设计。

                <TextBox Text="" x:Name="input"></TextBox>
                <TextBox Text="" x:Name="input2"></TextBox>
                <Button Content="Click2">
                    <i:Interaction.Triggers>                      
                        <!-- And -->
                        <!--
                        <i:EventTrigger EventName="Click">
                            <i:Interaction.Behaviors>
                                <ei:ConditionBehavior>
                                    <ei:ConditionalExpression>
                                        <ei:ComparisonCondition LeftOperand="{Binding Text, ElementName=input}" Operator="Equal"  RightOperand="123" />
                                        <ei:ComparisonCondition LeftOperand="{Binding Text, ElementName=input2}" Operator="Equal"  RightOperand="XYZ" />
                                    </ei:ConditionalExpression>
                                </ei:ConditionBehavior>
                            </i:Interaction.Behaviors>
                            <i:InvokeCommandAction Command="{Binding TestCommand}" CommandParameter="2"></i:InvokeCommandAction>
                        </i:EventTrigger>
                        -->
                        <!-- OR -->
                        <i:EventTrigger EventName="Click">
                            <i:Interaction.Behaviors>
                                <ei:ConditionBehavior>
                                    <ei:ConditionalExpression ForwardChaining="Or">
                                        <ei:ComparisonCondition LeftOperand="{Binding Text, ElementName=input}" Operator="Equal"  RightOperand="123" />
                                        <ei:ComparisonCondition LeftOperand="{Binding Text, ElementName=input2}" Operator="Equal"  RightOperand="XYZ" />
                                    </ei:ConditionalExpression>
                                </ei:ConditionBehavior>
                            </i:Interaction.Behaviors>
                            <i:InvokeCommandAction Command="{Binding TestCommand}" CommandParameter="2"></i:InvokeCommandAction>
                        </i:EventTrigger>
                    </i:Interaction.Triggers>
                </Button>

条件还可以实现And和Or的逻辑。在不满足条件的情况下命令不执行。
另一个触发方式是通过数据触发,即当输入完成后即可触发相应的逻辑代码,完成输入检验。

                    <i:Interaction.Triggers>
                        <!--<ei:DataTrigger Binding="{Binding ElementName=input,Path=Text}" Comparison="Equal" Value="123">
                            <ei:ChangePropertyAction TargetObject="{Binding ElementName=input}" PropertyName="ToolTip" Value="我是ToolTip改变了"></ei:ChangePropertyAction>
                            <ei:CallMethodAction TargetObject="{Binding}" MethodName="Alert"></ei:CallMethodAction>
                        </ei:DataTrigger>
                        <ei:DataTrigger Binding="{Binding ElementName=input2,Path=Text}" Comparison="Equal" Value="abc">
                            <ei:ChangePropertyAction TargetObject="{Binding ElementName=input}" PropertyName="ToolTip" Value="我是ToolTip改变了"></ei:ChangePropertyAction>
                            <ei:CallMethodAction TargetObject="{Binding}" MethodName="Alert"></ei:CallMethodAction>
                        </ei:DataTrigger>
                    </i:Interaction.Triggers>

是不是感觉到了XAML的强大,学习WPF如果不明白这些,那你和做WinForm有什么区别,直接拖拽就,然后编写代码,而根本没有使用XAML为我们提供的方便,又怎么能说自己使用WPF了呢。

目录
相关文章
|
C# C++ Windows
2000条你应知的WPF小姿势 基础篇<28-33 WPF启动故事>
2000条你应知的WPF小姿势 基础篇<28-33 WPF启动故事>
70 0
|
Web App开发 数据可视化 程序员
2000条你应知的WPF小姿势 基础篇<15-21>
2000条你应知的WPF小姿势 基础篇<15-21>
45 0
|
开发框架 .NET C#
2000条你应知的WPF小姿势 基础篇<8-14>
2000条你应知的WPF小姿势 基础篇<8-14>
87 0
|
编解码 前端开发 C#
2000条你应知的WPF小姿势 基础篇<1-7>
2000条你应知的WPF小姿势 基础篇<1-7>
49 0
|
C#
艾伟:闲话WPF之一(WPF的结构)
WPF进入我们的生活已经很多年。(写这句话让我想起来了“我不做大哥好多年”。) 个人认为在UI的实践中,用户需要的是易于操作的,更加绚丽的界面。这两个应该是最基本、也是最重要的宗旨。而对于开发人员就是要用最简单的方法开发出尽可能漂亮的界面,并且效率也不能太差。
849 0
|
前端开发 C#
silverlight,WPF动画终极攻略之白云飘,坐车去旅游篇(Blend 4开发)
原文:silverlight,WPF动画终极攻略之白云飘,坐车去旅游篇(Blend 4开发) 这章有点长,所以我分成了两章。这一章主要是准备工作,差不多算美工篇吧,这章基本不会介绍多少动画效果,主要讲的是blend中工具的使用,利用哪些工具做出哪些效果。
1245 0
|
前端开发 C# 容器
WPF星空效果
原文:WPF星空效果 效果 前阵子看到ay的蜘蛛网效果和知乎的登录页背景,觉得效果很酷.自己也想写一个.于是写着写着就变成这样了.少女梦幻的赶脚有木有.我这有着一颗少女心的抠脚大汉 实现思路 分为两个部分: 1.
1344 0
|
编解码 开发框架 数据可视化