码迷,mamicode.com
首页 > 其他好文 > 详细

lightswitch binding custom control

时间:2014-04-30 01:57:00      阅读:517      评论:0      收藏:0      [点我收藏+]

标签:com   blog   class   div   code   log   tar   c   strong   string   t   

Listing 1: Setting up data binding for the Rating control

1
2
3
4
5
6
usingSystem.Windows.Controls;<br>usingSystem.Windows.Data;<br>usingMicrosoft.LightSwitch.Threading;<br>namespace LightSwitchApplication <br>{<br>    public partial class ShippersListDetail{<br>       partial void ShippersListDetail_Created() {<br>          var proxy =this.FindControl("ShipperRating");
                proxy.ControlAvailable+=OnControlAvailable;<br>      }<br>      private void OnControlAvailable(object sender,ControlAvailableEventArgs e){<br>        Dispatchers.Main.BeginInvoke(()=>{<br>          Rating rc = e.ControlasRating;
                rc.ItemCount=5;
                rc.SelectionMode=RatingSelectionMode.Continuous;var b =newBinding("Value");
                b.Mode=BindingMode.TwoWay;
                rc.SetBinding(Rating.ValueProperty, b);<br>        });<br>      }<br>    }<br>}

  

lightswitch binding custom control,布布扣,bubuko.com

lightswitch binding custom control

标签:com   blog   class   div   code   log   tar   c   strong   string   t   

原文地址:http://www.cnblogs.com/neozhu/p/3695886.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!