4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

データバインディングを使ってUIとUIを結びつける

Last updated at Posted at 2016-03-03

UIの要素を指定するとき、数値や文字列ではなくx:Bind1Bindingを指定すると、
そのUIの要素の値をコードの変数や他のUIと結び付けられるようだ。

x:Name要素でUIに固有の名前を付けることでx:Bindができるようになる。

MainPage.xaml
<Page
    ...
    <StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <Slider x:Name="SliderA" Value="{x:Bind SliderB.Value, Mode=OneWay}" />
        <Slider x:Name="SliderB" Value="{x:Bind SliderA.Value, Mode=OneWay}" />
    </StackPanel>
</Page>

dataBindSlider.gif

スライダーを動かすともう片方も動く。どちらでも動く。


また

MainPage.xaml
<Page
    ...
    <StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <Slider x:Name="SliderA" Value="{x:Bind SliderB.Value, Mode=TwoWay}" />
        <Slider x:Name="SliderB" />
    </StackPanel>
</Page>

としても同様の結果になる。
ModeプロパティはOneTime, OneWay, TwoWayと三つある。
長くなるのでこのくらいで。


参考:Windowsフォーム開発者のためのWindows 10 UWPアプリ開発入門(後編) (1/5)
http://www.atmarkit.co.jp/ait/articles/1510/06/news017.html
データ バインディングの概要
https://msdn.microsoft.com/ja-jp/library/windows/apps/xaml/mt269383.aspx

  1. x:BindはWindows10上でしか使えないらしい。その代わりパフォーマンスがいいんだとか。逆にBindingはWindows8, 8.1でも使える代わりにパフォーマンスに劣るのだとか。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?