zoukankan      html  css  js  c++  java
  • (WPF)依赖属性



    属性触发器:

            <Button MinWidth=" 75" Margin="10">
                           
                <Button.Style>
                    <Style TargetType="{x:Type Button}">
                        <Style.Triggers>
                            <Trigger Property="IsMouseOver" Value="True">
                                <Setter Property="Foreground" Value="Blue"/>
                            </Trigger>
                        </Style.Triggers>
                    </Style>
                </Button.Style>
                    
                        OK
            </Button>

    数据触发器:


            <Style TargetType="TextBlock">
                <Style.Triggers>
                    <DataTrigger Binding="{Binding RelativeSource={RelativeSource Self},Path=Text}" Value="8">    //使源元素为目标元素本身的TextBlock的Text属性。

                                                                                                                      // 满足条件:Value=8
                        <Setter Property="Foreground"
                                Value="Red"></Setter>
                    </DataTrigger>
                </Style.Triggers>
            </Style>

            <TextBlock Height="Auto"
                       HorizontalAlignment="Center"
                       Margin="0"
                       Name="textBlock1"
                       Text="8"
                       VerticalAlignment="Center"
                       Grid.Row="1" />




    事件触发器:

      <Window.Triggers>
        <EventTrigger RoutedEvent="Window.Loaded">
          <EventTrigger.Actions>         
            <BeginStoryboard>
              <Storyboard SpeedRatio="1">
                  
                <DoubleAnimation Storyboard.TargetName="element"
                                    Storyboard.TargetProperty="Opacity"
                                    From="0.2" To="1" Duration="0:0:2.5"></DoubleAnimation>
              </Storyboard>
            </BeginStoryboard>
          </EventTrigger.Actions>      
        </EventTrigger>
      </Window.Triggers>


  • 相关阅读:
    二分法
    php冒泡排序
    php位运算
    php学习函数如何执行的
    php学习 打星星
    小程序的学习备注
    一个IP与多个域名绑定
    apache、mysql、php核心、phpmyadmin的安装及相互关联
    php虚拟主机配置( 输入网址 对应 ip地址)
    ORA-01084: OCI 调用中的参数无效
  • 原文地址:https://www.cnblogs.com/slgkaifa/p/6784404.html
Copyright © 2011-2022 走看看