Posts

Custom Progress Ring in Xamarin iOS

Image
Hi Friends , Today I would like to create a custom  progress ring  as below .In this progress ring you can create progress with change size , progress width , background ,ring color , label indicator style color, font size etc.  Create a project as Xamarin forms . 1. Create a class name  CustomProgressRing and three bindable property     public   class   CustomProgressRing   :   View      {          public   static   readonly   BindableProperty   ProgressValueProperty   =              BindableProperty . Create < CustomProgressRing ,   double >                    ( p   =>   p . ProgressValue ,   double . NaN ,   BindingMode . TwoWay , ...

Custom Progress bar in Xamarin Forms iOS

Image
Hi Friends , Today I would like to create a custom  progress bar as below .  Create a project as Xamarin forms . 1. Create a class name  CustomProgressBar and three bindable property  ProgressValueProperty (For Indication Progress)   public   static   readonly   BindableProperty   ProgressValueProperty  =              BindableProperty . Create < CustomProgressBar ,  double >            ( p  =>  p . ProgressValue ,  double . NaN ,  BindingMode . TwoWay ,  propertyChanged : ( bindable ,  oldValue ,  newValue ) =>             {                   var   control  = ( CustomProgressBar ...