﻿<?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 - How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</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>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Mon, 23 Mar 2015 21:37:41 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>This is awesome! We'll give it a try. Thanks!&lt;br&gt;</description></item><item><title>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Mon, 23 Mar 2015 08:36:15 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;blockquote&gt;Nice, how about for other platforms? Like android...&lt;/blockquote&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I'd like to update that a nightly build of Crosslight is now available in &lt;a href="http://git.intersoftpt.com/projects/CROS/repos/updates/browse/Crosslight3_0_5000_214" target="_blank"&gt;here&lt;/a&gt;. This update includes the feature to display circular image on ListView for Android platform.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Simply ImageSettings property in the activity such as shown in the following snippet code.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;public override ImageSettings ImageSettings
{
    get
    {
        return new ImageSettings()
        {
            ImageSize = new SizeF(160, 160), CornerRadius = 80f
        };
    }
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this help.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Wed, 18 Feb 2015 14:41:41 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Awesome! Please notify us about this update. We'd really love to see how it'll turn out.&lt;br&gt;&lt;br&gt;Thanks!&lt;br&gt;</description></item><item><title>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Wed, 18 Feb 2015 08:07:05 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p style="font-size: 13.3333330154419px;"&gt;Hi Jimmy,&lt;/p&gt;&lt;p style="font-size: 13.3333330154419px;"&gt;Both WinPhone and WinRT can use this:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;!--Replace
&amp;lt;Image Source="{Binding YourImage, Converter={StaticResource ImageConverter}"/&amp;gt;
With
--&amp;gt;

&amp;lt;Ellipse&amp;gt;
    &amp;lt;Ellipse.Fill&amp;gt;
        &amp;lt;ImageBrush ImageSource="{Binding YourImage, Converter={StaticResource ImageConverter}"/&amp;gt;
    &amp;lt;/Ellipse.Fill&amp;gt;
&amp;lt;/Ellipse&amp;gt;&lt;/pre&gt;&lt;p style="font-size: 13.3333330154419px;"&gt;But for Android currently there are no easy way to create circular image however Crosslight Team already solve the issue and will be available in next version of crosslight also it will be similar to how IOS create circular image.&lt;/p&gt;&lt;p style="font-size: 13.3333330154419px;"&gt;i will update you when next version are available.&lt;/p&gt;&lt;p style="font-size: 13.3333330154419px;"&gt;Best Regards,&lt;/p&gt;&lt;p style="font-size: 13.3333330154419px;"&gt;Arief&lt;/p&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;</description></item><item><title>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Mon, 16 Feb 2015 20:39:31 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Nice, how about for other platforms? Like android, windows phone, and winrt?&lt;br&gt;</description></item><item><title>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Mon, 16 Feb 2015 10:09:46 GMT</pubDate><dc:creator>leo.c</dc:creator><description>&lt;p&gt;Hi Jimmy Tungol,&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Unfortunately, Crosslight not yet support circular image on ListView controls using formbuilder.&lt;br&gt;&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;But you could adopt other approach by using UITableViewController on iOS and override the CellImageSettings to have a CornerRadius. Example:&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;public override ImageSettings CellImageSettings {
	get 
	{
		return new ImageSettings() 
		{
			ImageSize = new SizeF(36, 36),
			CornerRadius = 18;
		};
	}
}&lt;/pre&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br&gt;Best Regards,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Leo&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Display Circular Image on ListView</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crosslight-to-Display-Circular-Image-on-ListView/</link><pubDate>Fri, 13 Feb 2015 16:52:09 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>&lt;p&gt;Hi Guys,&lt;/p&gt;&lt;p&gt;Is this feature already implemented on Crosslight? We understand there is a UseCircleMask property for ImageAttribute on Forms, but is there an implementation for images on ListView controls used by Crosslight?&lt;br&gt;&lt;/p&gt;&lt;p&gt;http://blog.xamarin.com/elegant-circle-images-in-xamarin.forms/&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>