酢ろぐ!

カレーが嫌いなスマートフォンアプリプログラマのブログ。

Windows PhoneでデータバインディングでSliderコントロールの値の変化を取得する

バインディングをおこなうクラスを定義します。INotifyPropertyChangedインターフェースを継承して、Valueプロパティが変更する度に、バインディングされているオブジェクトに対してプロパティの変化を通知するようにします。

    public class SliderValueViewModel : INotifyPropertyChanged {
        private double ValueVal;
        public double Value {
            get { return ValueVal; }
            set {
                if (value != ValueVal) {
                    ValueVal = value;
                    NotifyPropertyChanged("Value");
                }
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;
        protected virtual void NotifyPropertyChanged(string propertyName) {
            if (PropertyChanged != null) {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }  
    }

スライダーの値の変化を反映しています。

<phone:PhoneApplicationPage 
    x:Class="SliderTest.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="True">

    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>

        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock x:Name="ApplicationTitle" Text="SOFTBUILD" Style="{StaticResource PhoneTextNormalStyle}"/>
            <TextBlock x:Name="PageTitle" Text="Slider Test" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>

        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
            <StackPanel Margin="-12,0" Orientation="Vertical" VerticalAlignment="Top">
                <Slider Height="84" HorizontalAlignment="Center" 
                        Margin="0" x:Name="slider1" Width="480" Value="{Binding Value, Mode=TwoWay}"
                        ValueChanged="slider1_ValueChanged" />
                <TextBlock x:Name="textBlock1" TextWrapping="Wrap" Text="{Binding Value}" 
                           HorizontalAlignment="Right" Margin="0,0,12,0"/>
            </StackPanel>
        </Grid>
    </Grid>

</phone:PhoneApplicationPage>

ここでは、ページの生成時にデータバインディングしました。

using System.Windows;
using Microsoft.Phone.Controls;
using System.ComponentModel;

namespace SliderTest {
    public partial class MainPage : PhoneApplicationPage {

        SliderValueViewModel sliderViewModel;

        public MainPage() {
            InitializeComponent();

            sliderViewModel = new SliderValueViewModel();
            ContentPanel.DataContext = sliderViewModel;
        }
    }
}

関連記事

blog.ch3cooh.jp