﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Crosslight - Please add support of Command Property binding in UICarouselViewCell</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Please-add-support-of-Command-Property-binding-in-UICarouselViewCell/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Please add support of Command Property binding in UICarouselViewCell</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Please-add-support-of-Command-Property-binding-in-UICarouselViewCell/</link><pubDate>Wed, 22 Apr 2015 16:10:15 GMT</pubDate><dc:creator>thomas.albert@tea-net.ch</dc:creator><category>CarouselView</category><description>&lt;p&gt;Nice&lt;br&gt;&lt;/p&gt;</description></item><item><title>Please add support of Command Property binding in UICarouselViewCell</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Please-add-support-of-Command-Property-binding-in-UICarouselViewCell/</link><pubDate>Wed, 22 Apr 2015 03:44:47 GMT</pubDate><dc:creator>Arief</dc:creator><category>CarouselView</category><description>&lt;p&gt;Hi Leo,&lt;/p&gt;&lt;p&gt;We have uploaded the hotfix for CROS-798 featuring&amp;nbsp;CommandProperty binding support to UIButton in custom UICarouselVewCell.&amp;nbsp;&lt;/p&gt;&lt;p&gt;You can download the nightly build&amp;nbsp;&lt;a href="http://git.intersoftpt.com/projects/CROS/repos/updates/browse/Crosslight3_0_5000_229" target="_blank"&gt;here&lt;/a&gt;.&amp;nbsp;Please note that you need to use Unified API for it to work, also please mind that you need to add these code because how the UIButton work differently in iOS for ViewSlider. Just add the Bolded code below, i use the View Slider samples as the example:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;[ImportBinding(typeof(ItemSliderBindingProvider))]    public partial class ItemSliderViewController : UIViewController&amp;lt;ItemSliderViewModel&amp;gt;&lt;b&gt;,ISupportItemBinding&lt;/b&gt;    
{        

&lt;b&gt;private Dictionary&amp;lt;Type, IItemBindingAdapter&amp;gt; _itemBindingAdapters = null;

        &lt;/b&gt;public UICarouselView CarouselView { get; set; }&lt;b&gt;
&lt;/b&gt;
        public ItemSliderViewController()
        {
        }
&lt;b&gt;
        #region ISupportItemBinding implementation

        public Dictionary&amp;lt;Type, IItemBindingAdapter&amp;gt; ItemBindingAdapters
        {
            get
            {
                if (_itemBindingAdapters == null)
                    _itemBindingAdapters = new Dictionary&amp;lt;Type, IItemBindingAdapter&amp;gt;();

                return _itemBindingAdapters;
            }
        }
        #endregion&lt;/b&gt;

        protected override void OnViewInitialized()
        {
            base.OnViewInitialized();

           &lt;b&gt; //register the binding adapter for UIButton&lt;/b&gt;
           &lt;b&gt; this.ItemBindingAdapters.Add(typeof(UIButton), Activator.CreateInstance&amp;lt;UIButtonItemBindingAdapter&amp;gt;());&lt;/b&gt;

            this.Title = "Custom Template";
        }

        protected override void InitializeView()
        {
            base.InitializeView();

            this.EdgesForExtendedLayout = UIRectEdge.None;

            this.CarouselView = new UICarouselView(new CGRect(0, 0, this.View.Bounds.Width, this.View.Bounds.Height))
            {
                AutoresizingMask = UIViewAutoresizing.FlexibleDimensions,
                CellTemplate = new UIViewTemplate(ItemSliderCellView.Nib)
            };
            this.View.AddSubview(this.CarouselView);

            this.RegisterViewIdentifier("ViewSlider", this.CarouselView);
        }

        &lt;b&gt;protected override void Dispose(bool disposing)
        {
            base.Dispose(disposing);

            if (disposing)
            {
                this.ItemBindingAdapters.Clear();
            }
        }&lt;/b&gt;
    }&lt;/pre&gt;&lt;p&gt;Best Regards&lt;br&gt;Arief&lt;br&gt;&lt;/p&gt;</description></item><item><title>Please add support of Command Property binding in UICarouselViewCell</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Please-add-support-of-Command-Property-binding-in-UICarouselViewCell/</link><pubDate>Thu, 02 Apr 2015 02:32:05 GMT</pubDate><dc:creator>Arief</dc:creator><category>CarouselView</category><description>&lt;p&gt;Hi Leo,&lt;br&gt;&lt;br&gt;I already inform the requested feature to our programmer (CommandProperty Binding in Custom View Slider - CROS-798), i will update you with the information regarding the Feature Request.&lt;br&gt;&lt;br&gt;Stay tuned for our newest build! :)&lt;br&gt;&lt;br&gt;Best Regards,&lt;br&gt;Arief&lt;/p&gt;</description></item><item><title>Please add support of Command Property binding in UICarouselViewCell</title><link>http://www.intersoftsolutions.com/Community/Crosslight/Please-add-support-of-Command-Property-binding-in-UICarouselViewCell/</link><pubDate>Mon, 30 Mar 2015 10:23:37 GMT</pubDate><dc:creator>hongliyu2002</dc:creator><category>CarouselView</category><description>&lt;p&gt;It seems that UIButtonView in UICarouselViewCell does not support Command Property Binding.&amp;nbsp;&lt;/p&gt;&lt;p&gt;You know sometimes we need tap buttons in the carousel view to perform some custom actions, such as custom navigation target with different target source, it is common requirement when it is used as advertisement banner.&lt;/p&gt;&lt;p&gt;Please add this feature.&lt;/p&gt;</description></item></channel></rss>