Buscar..


Parámetros

Parámetro Detalle
Valor (flotador) La propiedad vinculada a esta propiedad de dependencia se actualizará siempre que el usuario deje de arrastrar el control deslizante.

Observaciones

  • Asegúrese de hacer referencia al ensamblado System.Windows.Interactivity , para que el analizador XAML reconozca la declaración xmlns: i .
  • Tenga en cuenta que la instrucción xmlns: b coincide con el espacio de nombres donde reside la implementación del comportamiento
  • El ejemplo supone un conocimiento práctico de las expresiones de enlace y XAML.

Implementación del comportamiento

using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Interactivity;

namespace MyBehaviorAssembly
{

public class SliderDragEndValueBehavior : Behavior<Slider>
{

    public static readonly DependencyProperty ValueProperty = DependencyProperty.Register(
        "Value", typeof (float), typeof (SliderDragEndValueBehavior), new PropertyMetadata(default(float)));

    public float Value
    {
        get { return (float) GetValue(ValueProperty); }
        set { SetValue(ValueProperty, value); }
    }

    protected override void OnAttached()
    {
        RoutedEventHandler handler = AssociatedObject_DragCompleted;
        AssociatedObject.AddHandler(Thumb.DragCompletedEvent, handler);
    }

    private void AssociatedObject_DragCompleted(object sender, RoutedEventArgs e)
    {
        Value = (float) AssociatedObject.Value;
    }

    protected override void OnDetaching()
    {
        RoutedEventHandler handler = AssociatedObject_DragCompleted;
        AssociatedObject.RemoveHandler(Thumb.DragCompletedEvent, handler);
    }
}
}

Uso de XAML

<UserControl x:Class="Example.View"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
         xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
                
         xmlns:b="MyBehaviorAssembly;assembly=MyBehaviorAssembly"
                      
         mc:Ignorable="d" 
         d:DesignHeight="200" d:DesignWidth="200"
               
         >
           <Slider>
            <i:Interaction.Behaviors>
                <b:SliderDragEndValueBehavior
                      
                        Value="{Binding Value, Mode=OneWayToSource, UpdateSourceTrigger=PropertyChanged}"
                        
                        />
            </i:Interaction.Behaviors>
          </Slider>

</UserControl>


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow